From 09fa6c18424575224d66b0a7da914844ac112b64 Mon Sep 17 00:00:00 2001 From: Israel Fruchter Date: Mon, 6 Jan 2025 11:55:29 +0200 Subject: [PATCH] fix(integration-tests): update versions used some images of older branches aren't available anymore we shouldn't be using that old release in those tests we should find a better way to stop those test from breaking but for now let just move them to newer versions --- unit_tests/test_config_get_version_based_on_conf.py | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/unit_tests/test_config_get_version_based_on_conf.py b/unit_tests/test_config_get_version_based_on_conf.py index bcc6dded17..cb53c2de29 100644 --- a/unit_tests/test_config_get_version_based_on_conf.py +++ b/unit_tests/test_config_get_version_based_on_conf.py @@ -105,21 +105,19 @@ def test_scylla_repo(scylla_version, expected_outcome, distro): @pytest.mark.parametrize(argnames='scylla_version, expected_outcome', argvalues=[ - pytest.param('6.1', ('6.1', False), id='6.1'), - pytest.param('2024.1', ('2024.1', True), id='2024.1'), + pytest.param('6.2', ('6.2', False), id='6.2'), + pytest.param('2024.2', ('2024.2', True), id='2024.2'), pytest.param('master:latest', (None, False), id='master'), - pytest.param('branch-6.0:latest', (None, False), id='branch-6.0'), + pytest.param('branch-6.2:latest', (None, False), id='branch-6.2'), pytest.param('enterprise:latest', (None, True), id='enterprise'), - pytest.param('branch-2023.1:latest', (None, True), id='branch-2023.1'), pytest.param('branch-2024.1:latest', (None, True), id='branch-2024.1'), + pytest.param('branch-2024.2:latest', (None, True), id='branch-2024.2'), ], ) @pytest.mark.parametrize(argnames='backend', argvalues=('aws', 'gce', 'azure') ) def test_images(backend, scylla_version, expected_outcome): - if backend == "azure" and "2023.1" in scylla_version: - pytest.skip("Azure doesn't have 2023.1 images anymore") os.environ['SCT_CLUSTER_BACKEND'] = backend os.environ['SCT_SCYLLA_VERSION'] = scylla_version