We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9362e9e commit 201fd5bCopy full SHA for 201fd5b
test/test_memory.py
@@ -12,7 +12,9 @@
12
13
14
class TestMemory:
15
- @pytest.mark.skipif(platform.system() == "Windows")
+ @pytest.mark.skipif(
16
+ platform.system() == "Windows", reason="Memray doesn't work on Windows."
17
+ )
18
@pytest.mark.parametrize("denominator", [2, 0])
19
@pytest.mark.limit_memory("10 MB")
20
def test_repeated_calls_do_not_accumulate_memory(self, denominator):
0 commit comments