mirror of
https://github.com/mongodb/mongo.git
synced 2024-11-30 17:10:48 +01:00
SERVER-446970 KRB5_CCNAME variable is reused between JSTest jobs when it shouldn't be
This commit is contained in:
parent
3c1813351d
commit
471bb3b878
@ -1,5 +1,6 @@
|
||||
"""The unittest.TestCase for JavaScript tests."""
|
||||
|
||||
import copy
|
||||
import os
|
||||
import os.path
|
||||
import sys
|
||||
@ -70,7 +71,7 @@ class _SingleJSTestCase(interface.ProcessTestCase):
|
||||
# Directory already exists.
|
||||
pass
|
||||
|
||||
process_kwargs = self.shell_options.get("process_kwargs", {}).copy()
|
||||
process_kwargs = copy.deepcopy(self.shell_options.get("process_kwargs", {}))
|
||||
|
||||
if process_kwargs \
|
||||
and "env_vars" in process_kwargs \
|
||||
|
Loading…
Reference in New Issue
Block a user