Skip to content

Commit

Permalink
env var check
Browse files Browse the repository at this point in the history
  • Loading branch information
loechel committed Apr 30, 2024
1 parent 752dd79 commit 773d230
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -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():
Expand Down

0 comments on commit 773d230

Please sign in to comment.