Skip to content

Commit d73d029

Browse files
thejunglejaneleifwalsh
authored andcommitted
Simplify environment dict creation
1 parent bf61c0d commit d73d029

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

marbles/core/tests/test_main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ def __run_cmd(self):
7979
pth.flush()
8080

8181
coverage_config = os.path.join(core_dir, '.coveragerc')
82-
env = {**os.environ, **{'COVERAGE_PROCESS_START': coverage_config}}
82+
env = {'COVERAGE_PROCESS_START': coverage_config, **os.environ}
8383
to_remove = pth.name
8484
else:
8585
env = None

0 commit comments

Comments
 (0)