Строгость(Severity)
import allure
class TestBar(object):
@allure.severity(allure.severity_level.CRITICAL)
def test_bar(self):
pass
# custom severity
@allure.severity("hard")
def test_bar(self):
passnosetests my_tests/ --with-allure --logdir=tmp --severity="critical, hard"
Last updated