We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 14d05dc commit 4cfead7Copy full SHA for 4cfead7
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