diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2023-11-02 05:45:38 +0100 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2023-11-02 05:45:40 +0100 |
commit | 4fa02bf0faa65275ee1174057f3ca25f63a67598 (patch) | |
tree | 236325bffd80ef88a20d3ce7418e0e9630fefc52 /test | |
parent | fix Python version for GitHub Actions runs (diff) | |
download | cimple-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.py | 2 |
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) |