Skip to content

Commit 7eea058

Browse files
authored
move julia_args from alias to command line
1 parent b03d438 commit 7eea058

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ julia> Pkg.test("MyModule"; test_args=`--verbose MyTestsetA`, julia_args=`--thre
8585
Alternatively, arguments can be passed directly from the command line with a shell alias like the one below:
8686

8787
```julia-repl
88-
jltest -- --verbose MyTestsetA
88+
jltest --threads=auto -- --verbose MyTestsetA
8989
```
9090

9191
<details><summary>Shell alias</summary>
@@ -100,7 +100,7 @@ function jltest {
100100
shift
101101
fi
102102

103-
"${julia[@]}" --startup-file=no --threads=auto --project -e "using Pkg; Pkg.API.test(; test_args=ARGS)" "$@"
103+
"${julia[@]}" --startup-file=no --project -e "using Pkg; Pkg.API.test(; test_args=ARGS)" "$@"
104104
}
105105
```
106106

0 commit comments

Comments
 (0)