From 519d391bd54f8253560e0d42166b8195e9194ad6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miro=20Ilia=C5=A1?= Date: Wed, 9 Sep 2015 10:16:12 +0200 Subject: [PATCH] Update testing.rst documentation --- doc/contributors/testing.rst | 17 +++++++++++++---- 1 file changed, 13 insertions(+), 4 deletions(-) diff --git a/doc/contributors/testing.rst b/doc/contributors/testing.rst index e66e3bc..afa544d 100644 --- a/doc/contributors/testing.rst +++ b/doc/contributors/testing.rst @@ -4,12 +4,21 @@ Testing Autocmake ================= You will need to install `pytest `__. -Check also the `Travis build and test recipe `__ -for other requirements. -Your contributions and changes should preserve the test set. You can run it locally with:: +Check also the `Travis `__ +and the `Appveyor `__ +build and test recipes for other requirements. + +Your contributions and changes should preserve the test set. You can run locally all tests with:: $ py.test test/test.py + +You can also select individual tests, for example those with *fc_blas* string in the name + + $ py.test -k fc_blas test/test.py + +For more options, see the *py.test* flags. This test set is run upon each push to the central repository. -See also the `Travis build and test history `__. +See also the `Travis `__ and the +`Appveyour `__ build and test history.