Skip to content

Commit 201fd5b

Browse files
committed
Fix skipif
1 parent 9362e9e commit 201fd5b

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

test/test_memory.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,9 @@
1212

1313

1414
class TestMemory:
15-
@pytest.mark.skipif(platform.system() == "Windows")
15+
@pytest.mark.skipif(
16+
platform.system() == "Windows", reason="Memray doesn't work on Windows."
17+
)
1618
@pytest.mark.parametrize("denominator", [2, 0])
1719
@pytest.mark.limit_memory("10 MB")
1820
def test_repeated_calls_do_not_accumulate_memory(self, denominator):

0 commit comments

Comments
 (0)