teilchensammler/config/test.py

8 lines
224 B
Python
Raw Permalink Normal View History

import os
def test_we_are_using_the_correct_envpath():
# does this test make sense anymore?
env_path = ".env.ci" if os.environ.get("CI", None) else ".env.test"
assert os.environ.get("ENV_PATH", "") == env_path