We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b63cf71 commit c5df98aCopy full SHA for c5df98a
tests/refresh_script.py
@@ -13,4 +13,5 @@
13
# file3.txt is delegated so we end up exercising all metadata load paths
14
u.get_targetinfo("file3.txt")
15
except OSError as e:
16
- sys.exit(f"Failed on iteration {i}: {e}")
+ print(f"Failed on iteration {i}")
17
+ raise e
tests/test_updater_ng.py
@@ -362,7 +362,7 @@ def test_parallel_updaters(self) -> None:
362
# Refresh two updaters in parallel many times, using the same local metadata cache.
363
# This should reveal race conditions.
364
365
- iterations = 100
+ iterations = 1000
366
367
# The project root is the parent of the tests directory
368
project_root = os.path.dirname(utils.TESTS_DIR)
0 commit comments