Skip to content

Commit 522143f

Browse files
committed
Replace Windows \ path separator with /
1 parent 92cc12e commit 522143f

File tree

2 files changed

+12
-8
lines changed

2 files changed

+12
-8
lines changed
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
{
22
"jsonSchemaBuilderDriverSettings": {
3-
"remotesBaseDirectory": "..\\..\\..\\..\\..\\JSON-Schema-Test-Suite\\remotes\\"
3+
"remotesBaseDirectory": "../../../../../JSON-Schema-Test-Suite/remotes/"
44
},
55
"jsonSchemaBuilder201909DriverSettings": {
6-
"testBaseDirectory": "..\\..\\..\\..\\..\\JSON-Schema-Test-Suite\\tests\\draft2019-09"
6+
"testBaseDirectory": "../../../../../JSON-Schema-Test-Suite/tests/draft2019-09"
77
},
88
"jsonSchemaBuilder202012DriverSettings": {
9-
"testBaseDirectory": "..\\..\\..\\..\\..\\JSON-Schema-Test-Suite\\tests\\draft2020-12"
9+
"testBaseDirectory": "../../../../../JSON-Schema-Test-Suite/tests/draft2020-12"
1010
}
1111
}
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,17 @@
11
{
2+
// Normally you should not need an appsettings.local.json, because the appsettings.json sets each of these
3+
// paths to use the copy of JSON-Schema-Test-Suite that is included as a submodule of this repository.
4+
// You would only need to change these if you are using a locally-modified copy of the test suite during
5+
// development.
26
"jsonSchemaBuilderDriverSettings": {
3-
"remotesBaseDirectory": "{Local Path To The Json Schema Test Suite}\\JSON-Schema-Test-Suite\\remotes\\"
7+
"remotesBaseDirectory": "{Local Path To The Json Schema Test Suite}/JSON-Schema-Test-Suite/remotes/"
48
},
59
"jsonSchemaBuilder201909DriverSettings": {
6-
"testBaseDirectory": "{Local Path To The Json Schema Test Suite}\\JSON-Schema-Test-Suite\\tests\\draft2019-09",
7-
"benchmarkOutputPath": "{Local Path To Benchmark outputs}\\output\\201909"
10+
"testBaseDirectory": "{Local Path To The Json Schema Test Suite}/JSON-Schema-Test-Suite/tests/draft2019-09",
11+
"benchmarkOutputPath": "{Local Path To Benchmark outputs}/output/201909"
812
},
913
"jsonSchemaBuilder202012DriverSettings": {
10-
"testBaseDirectory": "{Local Path To The Json Schema Test Suite}\\JSON-Schema-Test-Suite\\tests\\draft2020-12",
11-
"benchmarkOutputPath": "{Local Path To Benchmark outputs}\\output\\202012"
14+
"testBaseDirectory": "{Local Path To The Json Schema Test Suite}/JSON-Schema-Test-Suite/tests/draft2020-12",
15+
"benchmarkOutputPath": "{Local Path To Benchmark outputs}/output/202012"
1216
}
1317
}

0 commit comments

Comments
 (0)