Skip to content

Commit 866a126

Browse files
christiangnrdmaleadt
authored andcommitted
Update README.md
1 parent c6aac39 commit 866a126

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ First you should remove all `include` statements that you added.
2828
Then in your `test/runtests.jl` add:
2929

3030
```julia
31+
using MyModule
3132
using ParallelTestRunner
3233

3334
runtests(MyModule, ARGS)
@@ -38,14 +39,14 @@ runtests(MyModule, ARGS)
3839
`runtests` takes a keyword argument that acts as a filter function
3940

4041
```julia
41-
function testfilter(test)
42+
function test_filter(test)
4243
if Sys.iswindows() && test == "ext/specialfunctions"
4344
return false
4445
end
4546
return true
4647
end
4748

48-
runtests(MyModule, ARGS; testfilter)
49+
runtests(MyModule, ARGS; test_filter)
4950
```
5051

5152
### Provide defaults

0 commit comments

Comments
 (0)