diff 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
line wrap: on
line diff
--- a/README.md	Sat Feb 20 21:19:24 2021 +0100
+++ b/README.md	Fri Mar 12 19:53:40 2021 +0100
@@ -21,3 +21,9 @@
 julia> Pkg.test(test_args=["*/readoperators.jl"])
 ```
 to run only the tests in files named `readoperators.jl`.
+Multiple filters are allowed and will cause files matching any of the provided
+filters to be run. For example
+```
+Pkg.test(test_args=["*/lazy_tensor_operations_test.jl", "Grids/*"])
+```
+will run any file named `lazy_tensor_operations_test.jl` and all the files in the `Grids` folder.