Skip to content

Commit 62dce51

Browse files
authored
Merge branch 'master' into fix-free-threaded-race-condition
2 parents 02abbbf + ecc83e1 commit 62dce51

2 files changed

Lines changed: 3 additions & 1 deletion

File tree

CHANGES/1314.contrib.rst

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
Added support for collecting code coverage of isolated multidict tests
2+
-- by :user:`Vizonex`.

tests/test_leaks.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ def test_leak(script: str) -> None:
2525
leak_test_script = pathlib.Path(__file__).parent.joinpath("isolated", script)
2626

2727
subprocess.run(
28-
[sys.executable, "-u", str(leak_test_script)],
28+
[sys.executable, "-u", "-m", "coverage", "run", str(leak_test_script)],
2929
stdout=subprocess.PIPE,
3030
stderr=subprocess.PIPE,
3131
check=True,

0 commit comments

Comments
 (0)