painless-software / python-cli-test-helpers

Useful helpers for writing tests for your Python CLI program.
https://python-cli-test-helpers.readthedocs.io
GNU General Public License v3.0
28 stars 4 forks source link

Fix EnvironContext not restoring environment variables #8

Closed bittner closed 2 years ago

bittner commented 2 years ago

os.environ needs to be restored from a deep-copy, because assignment statements (for restoring an object) in Python only restore the binding to the object but not its content, which is essentially modified when updating the environment.

Fixes #7