Skip to content

Commit ce54078

Browse files
authored
Merge pull request #97 from JuliaAstro/tests
Update for v2 framework
2 parents a2aa1c9 + 89af71e commit ce54078

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

.github/workflows/CI.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,8 @@ jobs:
3939
- uses: julia-actions/cache@v2
4040
- uses: julia-actions/julia-buildpkg@latest
4141
- uses: julia-actions/julia-runtest@latest
42+
with:
43+
test_args: '--verbose'
4244
- uses: julia-actions/julia-processcoverage@v1
4345
- uses: codecov/codecov-action@v5
4446
with:

test/runtests.jl

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
using ParallelTestRunner: runtests
1+
using ParallelTestRunner: runtests, parse_args
22
import Photometry
33

44
const init_code = quote
@@ -7,4 +7,6 @@ const init_code = quote
77
const DATA_DIR = joinpath(@__DIR__, "data")
88
end
99

10-
runtests(Photometry, Base.ARGS; init_code)
10+
args = parse_args(Base.ARGS)
11+
12+
runtests(Photometry, args; init_code)

0 commit comments

Comments
 (0)