Skip to content

Commit 86f8785

Browse files
Fix condition for slow WASM tests
1 parent 2217455 commit 86f8785

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/conftest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -239,7 +239,7 @@ def pytest_collection_modifyitems(config: Any, items: Any) -> None:
239239
for item in items:
240240
if "slow_hypothesis" in item.keywords:
241241
item.add_marker(skip_slow_hyp)
242-
if "slow_wasm" in item.keywords and not IS_WASM:
242+
if "slow_wasm" in item.keywords and IS_WASM:
243243
item.add_marker(skip_slow_wasm)
244244

245245

0 commit comments

Comments
 (0)