Skip to content

Commit

Permalink
Merge pull request #553 from bwoodsend/pypy-ci
Browse files Browse the repository at this point in the history
  • Loading branch information
hugovk committed Jun 18, 2022
2 parents abe26fc + 404de1a commit 4b5cccc
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/test.yml
Expand Up @@ -14,6 +14,8 @@ jobs:
python-version: ["pypy-3.8", "3.7", "3.8", "3.9", "3.10", "3.11-dev"]
os: [ubuntu-latest]
include:
- { python-version: "pypy-3.8", os: windows-latest }
- { python-version: "pypy-3.8", os: macos-latest }
- { python-version: "3.10", os: windows-latest }
- { python-version: "3.10", os: macos-latest }

Expand Down
4 changes: 4 additions & 0 deletions tests/test_ujson.py
Expand Up @@ -515,6 +515,10 @@ def test_encode_surrogate_characters():
assert ujson.dumps({"\ud800": "\udfff"}, ensure_ascii=False, sort_keys=True) == out2


@pytest.mark.xfail(
hasattr(sys, "pypy_version_info") and os.name == "nt",
reason="This feature needs fixing! See #552",
)
@pytest.mark.parametrize(
"test_input, expected",
[
Expand Down

0 comments on commit 4b5cccc

Please sign in to comment.