aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/test/py/test_repo.py
diff options
context:
space:
mode:
authorEgor Tensin <Egor.Tensin@gmail.com>2023-11-02 05:45:38 +0100
committerEgor Tensin <Egor.Tensin@gmail.com>2023-11-02 05:45:40 +0100
commit4fa02bf0faa65275ee1174057f3ca25f63a67598 (patch)
tree236325bffd80ef88a20d3ce7418e0e9630fefc52 /test/py/test_repo.py
parentfix Python version for GitHub Actions runs (diff)
downloadcimple-4fa02bf0faa65275ee1174057f3ca25f63a67598.tar.gz
cimple-4fa02bf0faa65275ee1174057f3ca25f63a67598.zip
test: prevent some classes of hangups
This would allow the exceptions (like the logging misconfiguration exceptions recently) to propagate to the main process.
Diffstat (limited to '')
-rw-r--r--test/py/test_repo.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/py/test_repo.py b/test/py/test_repo.py
index 544213d..ec04e6d 100644
--- a/test/py/test_repo.py
+++ b/test/py/test_repo.py
@@ -57,9 +57,9 @@ def _test_repo_internal(env, repo, numof_processes, runs_per_process):
for proc in processes:
proc.start()
- event.wait()
for proc in processes:
proc.join()
+ event.wait()
repo.run_files_are_present(numof_runs)