Skip to content

Commit 9362e9e

Browse files
committed
Skip memray on windows
1 parent 2cfff70 commit 9362e9e

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

test/test_memory.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
import contextlib
44
import logging
5+
import platform
56

67
import pytest
78

@@ -11,6 +12,7 @@
1112

1213

1314
class TestMemory:
15+
@pytest.mark.skipif(platform.system() == "Windows")
1416
@pytest.mark.parametrize("denominator", [2, 0])
1517
@pytest.mark.limit_memory("10 MB")
1618
def test_repeated_calls_do_not_accumulate_memory(self, denominator):

0 commit comments

Comments
 (0)