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