File tree Expand file tree Collapse file tree 3 files changed +10
-0
lines changed
Expand file tree Collapse file tree 3 files changed +10
-0
lines changed Original file line number Diff line number Diff line change @@ -18,6 +18,8 @@ def data(request):
1818 return request .param
1919
2020
21+ # coverage might allocate and cause this test to fail
22+ @pytest .mark .no_cover
2123@pytest .mark .thread_unsafe (
2224 reason = "tracemalloc captures global snapshots"
2325)
Original file line number Diff line number Diff line change @@ -19,6 +19,8 @@ def data(request):
1919 return request .param
2020
2121
22+ # coverage might allocate and cause this test to fail
23+ @pytest .mark .no_cover
2224@pytest .mark .thread_unsafe (
2325 reason = "tracemalloc captures global snapshots"
2426)
@@ -44,6 +46,8 @@ def test_frame_decompress_mem_usage(data):
4446 prev_snapshot = snapshot
4547
4648
49+ # coverage might allocate and cause this test to fail
50+ @pytest .mark .no_cover
4751@pytest .mark .thread_unsafe (
4852 reason = "tracemalloc captures global snapshots"
4953)
@@ -72,6 +76,8 @@ def test_frame_decompress_chunk_mem_usage(data):
7276 prev_snapshot = snapshot
7377
7478
79+ # coverage might allocate and cause this test to fail
80+ @pytest .mark .no_cover
7581@pytest .mark .thread_unsafe (
7682 reason = "tracemalloc captures global snapshots"
7783)
Original file line number Diff line number Diff line change @@ -71,6 +71,8 @@ def data(request):
7171 return request .param
7272
7373
74+ # coverage might allocate and cause this test to fail
75+ @pytest .mark .no_cover
7476@pytest .mark .thread_unsafe (
7577 reason = "tracemalloc captures global snapshots"
7678)
You can’t perform that action at this time.
0 commit comments