Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ defaults_overrides: poetry-no-dev ## Run Defaults and Overrides tests
$(PYTEST) -n4 -m 'defaults_overrides and not disruptive' --dist loadfile --enforce $(flags) testsuite/tests/singlecluster/

ui: playwright-install ## Run UI (console plugin) tests
$(PYTEST) -n2 -m 'ui' --dist loadfile --enforce $(flags) testsuite/tests/singlecluster/ui/
$(PYTEST) --reruns 0 -n2 -m 'ui' --dist loadfile --enforce $(flags) testsuite/tests/singlecluster/ui/

disruptive: poetry-no-dev ## Run disruptive tests
$(PYTEST) -m 'disruptive' $(flags) testsuite/tests/
Expand Down
2 changes: 2 additions & 0 deletions testsuite/tests/singlecluster/ui/console_plugin/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@
UI_SESSION_INIT_TIMEOUT,
)

pytestmark = [pytest.mark.flaky(reruns=0)]
Comment thread
silvi-t marked this conversation as resolved.


@pytest.fixture(scope="session")
def auth_state_file(browser, cluster, testconfig, request):
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@ def remove_preexisting_tls(tls_policy):


@pytest.mark.parametrize("tls_new_page", [TLSNewPageYaml, TLSNewPageForm])
@pytest.mark.flaky(reruns=0)
def test_tls_policy_ui(request, navigator, cluster, blame, gateway, cluster_issuer, tls_new_page, client):
"""Creates a TLSPolicy via the UI (form or YAML), verifies it appears, then deletes it via the UI"""

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
pytestmark = [pytest.mark.ui]


@pytest.mark.flaky(reruns=0)
def test_rate_limit_policy_ui(request, navigator, cluster, blame, gateway, client):
"""Creates a RateLimitPolicy via the UI, verifies it appears, then deletes it via the UI"""

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@


@pytest.mark.min_ocp_version((4, 20))
@pytest.mark.flaky(reruns=0)
def test_token_rate_limit_policy_ui(request, navigator, cluster, blame, gateway):
"""Creates a TokenRateLimitPolicy via the UI, verifies it appears, then deletes it via the UI

Expand Down
Loading