I tried through various ways to run individual tests and I am not sure if I am doing something wrong or if make test, test/runtests.jl, or simply Pkg.test is just broken.
The following make test calls did cause all 279 tests to run, instead of the reduced testset that I provide as an argument:
make test test_args="rules:NormalMeanVariance:out"
make test test_args="rules/normal_mean_variance"
julia --project=. -e 'using Pkg; Pkg.test(test_args = ["rules:NormalMeanVariance:out"])'
And to complete the various ways I tried to run individual tests, also the calls as provided in the docs do not work:
make test test_args="distributions:normal_mean_variance"
make test test_args="distributions:normal_mean_variance models:lgssm"
What is the correct way to run a single test?
I tried through various ways to run individual tests and I am not sure if I am doing something wrong or if
make test,test/runtests.jl, or simplyPkg.testis just broken.The following
make testcalls did cause all279tests to run, instead of the reduced testset that I provide as an argument:julia --project=. -e 'using Pkg; Pkg.test(test_args = ["rules:NormalMeanVariance:out"])'And to complete the various ways I tried to run individual tests, also the calls as provided in the docs do not work:
What is the correct way to run a single test?