summaryrefslogtreecommitdiff
path: root/jsonschema
diff options
context:
space:
mode:
authorJulian Berman <Julian@GrayVines.com>2021-03-02 18:42:16 -0500
committerJulian Berman <Julian@GrayVines.com>2021-03-02 18:42:16 -0500
commit2e6d699d218836b6336b542b42d0570b60b2f8b8 (patch)
tree595c1ca9914cfe609316dacddcf024558b7b419d /jsonschema
parent94e0f72081584db8dc80cc826c270dfef36f652b (diff)
parentb4a33401cbfa2a79787fbc7d5e19206ce01b896e (diff)
downloadjsonschema-2e6d699d218836b6336b542b42d0570b60b2f8b8.tar.gz
Merge branch 'main' into DavidKorczynski/main
* main: 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. Update pre-commit.
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"}'