Skip to content

Commit

Permalink
Ignore memory increases on macOS
Browse files Browse the repository at this point in the history
  • Loading branch information
thalassemia committed Dec 5, 2024
1 parent c05b406 commit 93af1c8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion stochastic_arrow/test/test_arrow.py
Original file line number Diff line number Diff line change
Expand Up @@ -224,7 +224,7 @@ def test_memory():

print('obsidian C implementation elapsed seconds for {} runs: {}'.format(
amplify, obsidian_end - obsidian_start))
if platform.system() == 'Windows':
if platform.system() == 'Windows' or platform.system() == 'Darwin':
assert memory_increases <= 10
else:
assert memory_increases <= 1
Expand Down

0 comments on commit 93af1c8

Please sign in to comment.