diff --git a/tests/integrationv2/test_happy_path.py b/tests/integrationv2/test_happy_path.py index 540aac871a2..f306b3ec913 100644 --- a/tests/integrationv2/test_happy_path.py +++ b/tests/integrationv2/test_happy_path.py @@ -11,6 +11,7 @@ from utils import invalid_test_parameters, get_parameter_name, get_expected_s2n_version, to_bytes +@pytest.mark.flaky(reruns=5, reruns_delay=2) @pytest.mark.uncollect_if(func=invalid_test_parameters) @pytest.mark.parametrize("cipher", ALL_TEST_CIPHERS, ids=get_parameter_name) @pytest.mark.parametrize("provider", [S2N, OpenSSL, GnuTLS, JavaSSL, SSLv3Provider]) @@ -69,7 +70,7 @@ def test_s2n_server_happy_path(managed_process, cipher, provider, curve, protoco cipher.name)) in server_results.stdout -@pytest.mark.flaky(reruns=5, reruns_delay=2, condition=platform.machine().startswith("aarch")) +@pytest.mark.flaky(reruns=5, reruns_delay=2) @pytest.mark.uncollect_if(func=invalid_test_parameters) @pytest.mark.parametrize("cipher", ALL_TEST_CIPHERS, ids=get_parameter_name) @pytest.mark.parametrize("provider", [S2N, OpenSSL, GnuTLS, SSLv3Provider]) diff --git a/tests/integrationv2/test_renegotiate.py b/tests/integrationv2/test_renegotiate.py index 84c12aa7cb1..8d53645c0d2 100644 --- a/tests/integrationv2/test_renegotiate.py +++ b/tests/integrationv2/test_renegotiate.py @@ -295,7 +295,7 @@ def test_s2n_client_renegotiate_with_openssl(managed_process, cipher, curve, cer """ -@pytest.mark.flaky(reruns=3, reruns_delay=1, condition=platform.machine().startswith("aarch")) +@pytest.mark.flaky(reruns=3, reruns_delay=1) @pytest.mark.uncollect_if(func=invalid_test_parameters) @pytest.mark.parametrize("cipher", ALL_TEST_CIPHERS, ids=get_parameter_name) @pytest.mark.parametrize("curve", ALL_TEST_CURVES, ids=get_parameter_name) @@ -345,7 +345,7 @@ def test_s2n_client_renegotiate_with_client_auth_with_openssl(managed_process, c """ -@pytest.mark.flaky(reruns=3, reruns_delay=1, condition=platform.machine().startswith("aarch")) +@pytest.mark.flaky(reruns=3, reruns_delay=1) @pytest.mark.uncollect_if(func=invalid_test_parameters) @pytest.mark.parametrize("cipher", ALL_TEST_CIPHERS, ids=get_parameter_name) @pytest.mark.parametrize("curve", ALL_TEST_CURVES, ids=get_parameter_name)