Created
November 15, 2018 14:53
-
-
Save neverstew/75e53b7c9fdb60706f95d76a35d3f977 to your computer and use it in GitHub Desktop.
allure-pytest breaking changes from pytest v4.0.0
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
pytest==4.0.0 | |
allure-pytest==2.5.3 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import allure | |
# pinched from https://github.com/allure-framework/allure-python/issues/307 | |
@allure.description("test for allure") | |
@allure.story("test the allure in pytest case") | |
def test_allure_pytest(self): | |
# will break | |
print("test now") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment