Skip to content

Commit

Permalink
Skip failing test on GraalPy
Browse files Browse the repository at this point in the history
  • Loading branch information
msimacek committed Jan 23, 2025
1 parent cefc8a4 commit 17b78a7
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions pytests/tests/test_comparisons.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
from typing import Type, Union

import sys
import pytest
from pyo3_pytests.comparisons import (
Eq,
Expand Down Expand Up @@ -28,6 +29,11 @@ def __ne__(self, other: Self) -> bool:
return NotImplemented


@pytest.mark.skipif(
sys.implementation.name == "graalpy"
and __graalpython__.get_graalvm_version().startswith("24.1"), # noqa: F821
reason="Bug in GraalPy 24.1",
)
@pytest.mark.parametrize(
"ty", (Eq, EqDerived, PyEq), ids=("rust", "rust-derived", "python")
)
Expand Down

0 comments on commit 17b78a7

Please sign in to comment.