view README.md @ 716:3e64e102e161 feature/selectable_tests

Rename Grids_test.jl to EquidistantGrid_test.jl
author Jonatan Werpers <jonatan@werpers.com>
date Sat, 20 Feb 2021 21:19:24 +0100
parents 6aa7677b5129
children 1c5600a711ae
line wrap: on
line source

# Sbplib

## Running tests
To run all tests simply run
```
(@v1.5) pkg> activate .
(Sbplib) pkg> test
```

If you want to run tests from a specific file in `test/`, you can do
```
julia> using Pkg
julia> Pkg.test(test_args=["[glob pattern]"])
```
For example
```
julia> Pkg.test(test_args=["SbpOperators/*"])
```
to run all test in the `SbpOperators` folder, or
```
julia> Pkg.test(test_args=["*/readoperators.jl"])
```
to run only the tests in files named `readoperators.jl`.