Skip to content

Commit

Permalink
chore: skip perf test on pypy
Browse files Browse the repository at this point in the history
  • Loading branch information
corenting committed May 21, 2024
1 parent 67ab861 commit 2146658
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions tests/test_immutabledict.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import pickle
import platform
from io import BytesIO
from typing import Any, Dict, Union

Expand Down Expand Up @@ -191,6 +192,10 @@ def test_union_operator_update_with_dict_second(self) -> None:
assert first_dict == {"a": "a", "b": "b"}
assert second_dict == {"a": "A", "c": "c"}

@pytest.mark.skipif(
platform.python_implementation() == "PyPy",
reason="Performance is just checked against CPython",
)
@pytest.mark.parametrize(
"statement",
[
Expand Down

0 comments on commit 2146658

Please sign in to comment.