We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ad12ad9 commit 244373cCopy full SHA for 244373c
1 file changed
.github/workflows/test.yml
@@ -36,4 +36,9 @@ jobs:
36
Pkg.instantiate()
37
Pkg.precompile()
38
'
39
- julia --project=. -e 'include("test/runtests.jl")'
+ julia --project=. -e '
40
+ using TestModules
41
+ println("@testset defined: ", isdefined(@__MODULE__, Symbol("@testset")))
42
+ println("exports: ", filter(n -> startswith(string(n), "@test"), names(TestModules)))
43
+ include("test/runtests.jl")
44
+ '
0 commit comments