We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a65806d commit c728147Copy full SHA for c728147
jsonschema/tests/_suite.py
@@ -45,10 +45,7 @@ def _remotes(self):
45
remotes = subprocess.check_output(
46
[sys.executable, str(jsonschema_suite), "remotes"],
47
)
48
- return {
49
- "http://localhost:1234/" + name.replace("\\", "/"): schema
50
- for name, schema in json.loads(remotes.decode("utf-8")).items()
51
- }
+ return json.loads(remotes.decode("utf-8"))
52
53
def benchmark(self, runner): # pragma: no cover
54
for name, Validator in _VALIDATORS.items():
0 commit comments