Skip to content

Commit

Permalink
print test_args
Browse files Browse the repository at this point in the history
  • Loading branch information
getzze committed Sep 23, 2024
1 parent 5834d9e commit 109c277
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion test/runtests.jl
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
if @isdefined(ARGS)
println("Test arguments: $(ARGS)")
end

using StatsBase
using StatsModels
using GLM
Expand Down Expand Up @@ -36,7 +40,7 @@ import RobustModels:

# To run test with verbose output use:
# Pkg.test(RobustModels; test_args=["verbose"])
VERBOSE = "verbose" in ARGS
VERBOSE = @isdefined(ARGS) && "verbose" in ARGS

L1_warning = "Warning: coefficient variance is not well defined for L1Estimator.\n"

Expand Down

0 comments on commit 109c277

Please sign in to comment.