diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2018-01-15 11:05:53 -0500 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2018-01-15 11:05:53 -0500 |
commit | e5f0d09a969ec9124e5fc7a9a82aa97cffc2afbb (patch) | |
tree | 9951f04df4dbb242be03e713731a063ac17263d8 /tests/test_process.py | |
parent | e5ad2f5efeee6ef726123bddcb53ab8587c518f8 (diff) | |
download | python-coveragepy-git-e5f0d09a969ec9124e5fc7a9a82aa97cffc2afbb.tar.gz |
Fine-tune the pypy3 5.10.0 json bug
Diffstat (limited to 'tests/test_process.py')
-rw-r--r-- | tests/test_process.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_process.py b/tests/test_process.py index 8bf6c11b..2d4e72f0 100644 --- a/tests/test_process.py +++ b/tests/test_process.py @@ -552,7 +552,7 @@ class ProcessTest(CoverageTest): self.assertIn("Trace function changed", out) def test_note(self): - if env.PYPY and env.PYPYVERSION[:2] == (5, 10): + if env.PYPY and env.PY3 and env.PYPYVERSION[:3] == (5, 10, 0): # https://bitbucket.org/pypy/pypy/issues/2729/pypy3-510-incorrectly-decodes-astral-plane self.skipTest("Avoid incorrect decoding astral plane JSON chars") self.make_file(".coveragerc", """\ |