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 c6aac39 commit 866a126Copy full SHA for 866a126
README.md
@@ -28,6 +28,7 @@ First you should remove all `include` statements that you added.
28
Then in your `test/runtests.jl` add:
29
30
```julia
31
+using MyModule
32
using ParallelTestRunner
33
34
runtests(MyModule, ARGS)
@@ -38,14 +39,14 @@ runtests(MyModule, ARGS)
38
39
`runtests` takes a keyword argument that acts as a filter function
40
41
-function testfilter(test)
42
+function test_filter(test)
43
if Sys.iswindows() && test == "ext/specialfunctions"
44
return false
45
end
46
return true
47
48
-runtests(MyModule, ARGS; testfilter)
49
+runtests(MyModule, ARGS; test_filter)
50
```
51
52
### Provide defaults
0 commit comments