File tree 1 file changed +12
-2
lines changed
1 file changed +12
-2
lines changed Original file line number Diff line number Diff line change @@ -186,8 +186,18 @@ remote `git` repositories. To run `rdf-validator` through the `clojure` tool, fi
186
186
:aliases {:rdf-validator {:main-opts [" -m" " rdf-validator.core" ]}}}
187
187
```
188
188
189
- The ` /path/to/test/suite ` directory should contain a ` src ` directory containing an ` rdf-validator-suite.edn ` file with the
190
- format described above. The ` clojure ` tool will put the ` /path/to/test/suite/src ` directory on the java classpath and the
189
+ The ` /path/to/test/suite ` directory should contain ` deps.edn ` file along with a ` src ` directory containing an ` rdf-validator-suite.edn ` file with the
190
+ format described above i.e.
191
+
192
+ /path/to/test/suite
193
+ |---- deps.edn
194
+ |---- src
195
+ |---- rdf-validator-suite.edn
196
+ |---- test1.sparql
197
+ |---- test2.sparql
198
+
199
+ The ` deps.edn ` file can be empty, although it can also be used to reference dependencies such as other test suites it imports
200
+ from (see below on how to specify dependencies). The ` clojure ` tool will put the ` /path/to/test/suite/src ` directory on the java classpath and the
191
201
` :rdf-validator ` alias will invoke ` clojure.main ` with the required arguments.
192
202
193
203
Now ` rdf-validator ` can be run with:
You can’t perform that action at this time.
0 commit comments