diff options
author | Michael Hirsch, Ph.D <scivision@users.noreply.github.com> | 2019-06-19 20:54:50 -0400 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2019-06-23 18:22:43 +0300 |
commit | 40a3a6c3d0de657163b4046ee36f62f6b521536b (patch) | |
tree | da2da43d51572677198f839b793151c6fe15e692 /docs/markdown/snippets | |
parent | 56f7e5c74f54d31b405fe1c4289a406ef826b757 (diff) | |
download | meson-40a3a6c3d0de657163b4046ee36f62f6b521536b.zip meson-40a3a6c3d0de657163b4046ee36f62f6b521536b.tar.gz meson-40a3a6c3d0de657163b4046ee36f62f6b521536b.tar.bz2 |
only --only option to run_project_tests, add type hints, improve variable name use
Diffstat (limited to 'docs/markdown/snippets')
-rw-r--r-- | docs/markdown/snippets/select_run_project_tests.md | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/docs/markdown/snippets/select_run_project_tests.md b/docs/markdown/snippets/select_run_project_tests.md new file mode 100644 index 0000000..8311c83 --- /dev/null +++ b/docs/markdown/snippets/select_run_project_tests.md @@ -0,0 +1,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.
\ No newline at end of file |