summaryrefslogtreecommitdiff
path: root/jsonschema
diff options
context:
space:
mode:
authorJulian Berman <Julian@GrayVines.com>2021-02-22 18:55:24 -0500
committerJulian Berman <Julian@GrayVines.com>2021-02-22 18:55:24 -0500
commitb4a33401cbfa2a79787fbc7d5e19206ce01b896e (patch)
tree1487d30262106348954b74656f6001bd96e415b7 /jsonschema
parentff68d7bfe0deb1a654f58454764f0ae078adf065 (diff)
parentd01a699c1a1863d66fb8d79ba59d856d877c7722 (diff)
downloadjsonschema-b4a33401cbfa2a79787fbc7d5e19206ce01b896e.tar.gz
Merge branch 'windows'
* windows: Reskip the PyPy-on-Windows tests. Try the Twisted prerelease, which hopefully obviates installing IOCP. No, don't use venv. Fix test to windows path matching Test via PyPy3.7 Unskip most of the skipped windows builds.
Diffstat (limited to 'jsonschema')
-rw-r--r--jsonschema/tests/test_cli.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/jsonschema/tests/test_cli.py b/jsonschema/tests/test_cli.py
index 22528fe..884a037 100644
--- a/jsonschema/tests/test_cli.py
+++ b/jsonschema/tests/test_cli.py
@@ -747,7 +747,7 @@ class TestCLI(TestCase):
],
)
error = str(e.exception)
- self.assertIn("/someNonexistentFile.json'", error)
+ self.assertIn(f"{os.sep}someNonexistentFile.json'", error)
def test_invalid_exlicit_base_uri(self):
schema = '{"$ref": "foo.json#definitions/num"}'