From 83f9c1e190290bd03b8808f5d1764e83566556c0 Mon Sep 17 00:00:00 2001 From: Imran Iqbal Date: Mon, 5 Dec 2022 08:27:14 +0000 Subject: [PATCH] test(conftest): skip Salt version test for `nightly` --- tests/conftest.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/conftest.py b/tests/conftest.py index 5e9429d..370525b 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -46,6 +46,6 @@ def target_python_version(): @pytest.fixture(scope="session") def target_salt_version(): target_salt = os.environ["KITCHEN_SUITE"].split("-", 2)[-1].replace("-", ".") - if target_salt in ("latest", "master"): + if target_salt in ("latest", "master", "nightly"): pytest.skip("Don't have a specific salt version to test against") return target_salt