9 lines
223 B
Python
9 lines
223 B
Python
import os
|
|
|
|
# Setup test environment variables
|
|
|
|
# Capture environment variables at start of testing so we can
|
|
# Monitor current setting during tests
|
|
old_env = os.environ.get("ENVIRON")
|
|
os.environ["ENVIRON"] = "test"
|