File tree Expand file tree Collapse file tree 3 files changed +21
-12
lines changed
Expand file tree Collapse file tree 3 files changed +21
-12
lines changed Original file line number Diff line number Diff line change 11name = " MiniLoggers"
22uuid = " 93f3dd0f-005d-4452-894a-a31841fa4078"
33authors = [" Andrey Oskin" ]
4- version = " 0.2.3 "
4+ version = " 0.2.4 "
55
66[deps ]
77Dates = " ade2ca70-3891-5945-98fb-dc099432e06a"
Original file line number Diff line number Diff line change 1+ module MiniLoggersTest
2+
3+ using ReTest
4+
5+ for file in sort ([file for file in readdir (@__DIR__ ) if
6+ occursin (r" ^test.*\. jl$" , file)])
7+ include (file)
8+ end
9+
10+ end # module
Original file line number Diff line number Diff line change 1- module MiniLoggersTest
2-
3- using ReTest
4-
5- include (" test01_tokenizer.jl" )
6- include (" test02_loggerformat.jl" )
7- include (" test03_misc.jl" )
8-
9- end # module
10-
11- MiniLoggersTest. runtests ()
1+ include (joinpath (@__DIR__ , " main.jl" ))
2+
3+ # You can run `Pkg.test("MiniLoggers", test_args = ["foo", "bar"])` or just
4+ # `Pkg.test(test_args = ["foo", "bar"])` to select only specific tests. If no `test_args`
5+ # is given or you are running usual `> ] test` command, then all tests are executed.
6+ if isempty (ARGS )
7+ MiniLoggersTest. runtests ()
8+ else
9+ MiniLoggersTest. runtests (ARGS )
10+ end
You can’t perform that action at this time.
0 commit comments