You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+10-4Lines changed: 10 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,18 +4,24 @@ Simple parallel test runner for Julia tests with autodiscovery.
4
4
5
5
## Usage
6
6
7
-
```julia
8
-
julia>import Pkg
7
+
The main entry point of `ParallelTestRunner` is the exported function `runtests`, which takes two mandatory arguments:
8
+
9
+
* the module for which you want to run the tests
10
+
* the list of arguments passed to the test script, as a `Vector{String}`, this will typically be [`Base.ARGS`](https://docs.julialang.org/en/v1/base/constants/#Base.ARGS).
0 commit comments