blob: 8311c831b572fc1cebb91b462793f67a699e8f4d (
plain)
1
2
3
4
5
6
7
8
9
10
|
## added `--only test(s)` option to run_project_tests.py
Individual tests or a list of tests from run_project_tests.py can be selected like:
```
python run_project_tests.py --only fortran
python run_project_tests.py --only fortran python3
```
This assists Meson development by only running the tests for the portion of Meson being worked on during local development.
|