Mercurial > repos > public > sbplib_julia
comparison README.md @ 717:1c5600a711ae feature/selectable_tests
Allow multiple filters
author | Jonatan Werpers <jonatan@werpers.com> |
---|---|
date | Fri, 12 Mar 2021 19:53:40 +0100 |
parents | 6aa7677b5129 |
children | 221ce98d2612 |
comparison
equal
deleted
inserted
replaced
716:3e64e102e161 | 717:1c5600a711ae |
---|---|
19 to run all test in the `SbpOperators` folder, or | 19 to run all test in the `SbpOperators` folder, or |
20 ``` | 20 ``` |
21 julia> Pkg.test(test_args=["*/readoperators.jl"]) | 21 julia> Pkg.test(test_args=["*/readoperators.jl"]) |
22 ``` | 22 ``` |
23 to run only the tests in files named `readoperators.jl`. | 23 to run only the tests in files named `readoperators.jl`. |
24 Multiple filters are allowed and will cause files matching any of the provided | |
25 filters to be run. For example | |
26 ``` | |
27 Pkg.test(test_args=["*/lazy_tensor_operations_test.jl", "Grids/*"]) | |
28 ``` | |
29 will run any file named `lazy_tensor_operations_test.jl` and all the files in the `Grids` folder. |