We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents a2aa1c9 + 89af71e commit ce54078Copy full SHA for ce54078
.github/workflows/CI.yml
@@ -39,6 +39,8 @@ jobs:
39
- uses: julia-actions/cache@v2
40
- uses: julia-actions/julia-buildpkg@latest
41
- uses: julia-actions/julia-runtest@latest
42
+ with:
43
+ test_args: '--verbose'
44
- uses: julia-actions/julia-processcoverage@v1
45
- uses: codecov/codecov-action@v5
46
with:
test/runtests.jl
@@ -1,4 +1,4 @@
1
-using ParallelTestRunner: runtests
+using ParallelTestRunner: runtests, parse_args
2
import Photometry
3
4
const init_code = quote
@@ -7,4 +7,6 @@ const init_code = quote
7
const DATA_DIR = joinpath(@__DIR__, "data")
8
end
9
10
-runtests(Photometry, Base.ARGS; init_code)
+args = parse_args(Base.ARGS)
11
+
12
+runtests(Photometry, args; init_code)
0 commit comments