2025-03-14 14:15:39 +01:00
|
|
|
import os
|
|
|
|
|
|
|
|
|
|
|
|
def test_we_are_using_the_correct_envpath():
|
2025-03-14 22:18:31 +01:00
|
|
|
# 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
|