7 lines
224 B
Python
7 lines
224 B
Python
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
|