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 5d6a993 commit af8abbbCopy full SHA for af8abbb
bin/jsonschema_suite
@@ -77,7 +77,11 @@ def url_for_path(path):
77
Tests in the refRemote.json file reference this URL, and assume the
78
corresponding contents are available at the URL.
79
"""
80
- return urljoin(REMOTES_BASE_URL, str(path.relative_to(REMOTES_DIR)))
+
81
+ return urljoin(
82
+ REMOTES_BASE_URL,
83
+ str(path.relative_to(REMOTES_DIR)).replace("\\", "/") # Windows...
84
+ )
85
86
87
class SanityTests(unittest.TestCase):
0 commit comments