We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 973fc3d commit 90a4725Copy full SHA for 90a4725
tests/unit/meta/test_LockFile.py
@@ -73,12 +73,14 @@ def test_lockFileInDifferentProcesses(self):
73
lockedPath = Path(temp_dir)
74
lockedPath_str = str(lockedPath)
75
lockFilePaths = []
76
- with (Config_override("lockfile.ttl", 0),
77
- Config_override("lockfile.checkFrequency", 0.1),
78
- Config_override("lockfile.timeout", 1)):
+ with (
+ Config_override("lockfile.ttl", 0),
+ Config_override("lockfile.checkFrequency", 0.1),
79
+ Config_override("lockfile.timeout", 1),
80
+ ):
81
with multiprocessing.Pool(processes=1) as pool:
82
lockFilePaths.extend(pool.map(create_lock_file, [lockedPath_str]))
-
83
+
84
85
86
0 commit comments