Add priority pytest marks
This commit is contained in:
parent
e982cfe389
commit
706e60ca0c
|
@ -12,7 +12,7 @@ markers =
|
||||||
self: Framework self-tests
|
self: Framework self-tests
|
||||||
critical: Critical checks for every PR
|
critical: Critical checks for every PR
|
||||||
settings_all: All tests related to the settings
|
settings_all: All tests related to the settings
|
||||||
settings_keycard: Tests related to Keycard settings settings
|
settings_keycard: Tests related to Keycard settings
|
||||||
settings_messaging: Tests related to messaging settings
|
settings_messaging: Tests related to messaging settings
|
||||||
settings_profile: Tests related to profile settings
|
settings_profile: Tests related to profile settings
|
||||||
settings_wallet: Tests related to wallet settings
|
settings_wallet: Tests related to wallet settings
|
||||||
|
|
|
@ -80,8 +80,8 @@ def test_generate_new_keys(main_window, keys_screen, user_name: str, password, u
|
||||||
assert BiometricsView().is_touch_id_button_visible(), f"TouchID button is not found"
|
assert BiometricsView().is_touch_id_button_visible(), f"TouchID button is not found"
|
||||||
BiometricsView().wait_until_appears().prefer_password()
|
BiometricsView().wait_until_appears().prefer_password()
|
||||||
SplashScreen().wait_until_appears().wait_until_hidden()
|
SplashScreen().wait_until_appears().wait_until_hidden()
|
||||||
# if not configs.system.TEST_MODE:
|
if not configs.system.TEST_MODE:
|
||||||
# BetaConsentPopup().confirm()
|
BetaConsentPopup().confirm()
|
||||||
|
|
||||||
with step('Open User Canvas and verify user info'):
|
with step('Open User Canvas and verify user info'):
|
||||||
|
|
||||||
|
|
|
@ -1,3 +1,3 @@
|
||||||
import pytest
|
import pytest
|
||||||
|
|
||||||
marks = pytest.mark.wallet
|
marks = pytest.mark.wallet
|
||||||
|
|
Loading…
Reference in New Issue