From 773d230d9866a9e5fff1debefac4561a1b9561b1 Mon Sep 17 00:00:00 2001 From: Alexander Loechel Date: Wed, 1 May 2024 00:48:11 +0200 Subject: [PATCH] env var check --- tests/test_settings.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_settings.py b/tests/test_settings.py index c928654..e06b23f 100644 --- a/tests/test_settings.py +++ b/tests/test_settings.py @@ -22,7 +22,7 @@ def test_base_settings(): @pytest.mark.skipif( - os.environ.get("CI", False), + os.environ.get("CI", False) == "true" or os.environ.get("CI", False) is True, reason="should not be run on CI as it helps to find out settings locally", ) def test_local_settings():