In some settings, it may be handy to be able to run most of the tests from a test suite with exception of some. Having the possibility to exclude tests (and not only to include a subset) while running them e.g. interactively would circumvent the need of listing all tests to include but the one to exclude.
A possible syntax could be with a leading exclamation mark, like in gitignore, as suggested by @giordano, e.g.
Pkg.test("AMDGPU"; test_args=`--jobs=8 !hip_rocarray`)
to exclude only the hip_roccaraytests from AMDGPU.jl, for example.
In some settings, it may be handy to be able to run most of the tests from a test suite with exception of some. Having the possibility to exclude tests (and not only to include a subset) while running them e.g. interactively would circumvent the need of listing all tests to include but the one to exclude.
A possible syntax could be with a leading exclamation mark, like in gitignore, as suggested by @giordano, e.g.
to exclude only the
hip_roccaraytests from AMDGPU.jl, for example.