2018-04-26 15:34:15 +03:00
|
|
|
import pytest
|
|
|
|
|
|
|
|
testrail_case_id = pytest.mark.testrail_case_id
|
2018-06-28 20:46:51 +02:00
|
|
|
testrail_id = pytest.mark.testrail_id # atomic tests
|
2018-09-28 18:30:06 +03:00
|
|
|
critical = pytest.mark.critical
|
|
|
|
medium = pytest.mark.medium
|
2022-10-26 17:14:25 +02:00
|
|
|
# new ui
|
|
|
|
new_ui_critical = pytest.mark.new_ui_critical
|
2022-11-21 06:49:53 +02:00
|
|
|
new_ui_medium = pytest.mark.new_ui_medium
|
2018-05-16 21:59:36 +02:00
|
|
|
|
2020-05-20 11:47:53 +03:00
|
|
|
flaky = pytest.mark.flaky
|
2021-04-30 11:31:39 +02:00
|
|
|
upgrade = pytest.mark.upgrade
|
2021-11-18 16:16:48 +01:00
|
|
|
skip = pytest.mark.skip
|
2022-06-14 16:02:48 +02:00
|
|
|
xfail = pytest.mark.xfail
|