Skip to content

Commit

Permalink
Test with pypy too
Browse files Browse the repository at this point in the history
  • Loading branch information
jackrosenthal committed Sep 29, 2024
1 parent c5e4e28 commit 5441127
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ extra-dependencies = [
]

[[tool.hatch.envs.hatch-test.matrix]]
python = ["3.8", "3.9", "3.10", "3.11", "3.12"]
python = ["3.8", "3.9", "3.10", "3.11", "3.12", "pypy3.10"]

[tool.hatch.envs.default]
installer = "uv"
Expand Down
1 change: 1 addition & 0 deletions tests/test_xml.py
Original file line number Diff line number Diff line change
Expand Up @@ -1185,6 +1185,7 @@ def test_syntax_error(self):
strip_text=strip_text,
)

@pytest.mark.skipif(sys.implementation.name == "pypy", reason="lnotab has issues with pypy")
def test_code_error(self):
for strip_text in (False, True):
child = FileLoader(os.path.join(os.path.dirname(__file__), "data")).load(
Expand Down

0 comments on commit 5441127

Please sign in to comment.