Skip to content

Commit

Permalink
TESTFIX: Fixing settings restoration.
Browse files Browse the repository at this point in the history
  • Loading branch information
mpu-creare committed Jun 1, 2021
1 parent 5548a13 commit 96a2f3c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion podpac/conftest.py
Expand Up @@ -65,7 +65,8 @@ def pytest_sessionstart(session):

def pytest_sessionfinish(session, exitstatus):
# restore settings
for key in settings:
keys = list(settings.keys())
for key in keys:
if key in original_settings:
settings[key] = original_settings[key]
else:
Expand Down

0 comments on commit 96a2f3c

Please sign in to comment.