summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorSimon Hafner <hafnersimon@gmail.com>2015-06-18 17:47:33 -0500
committerSimon Hafner <hafnersimon@gmail.com>2015-06-18 17:47:33 -0500
commitef9dd0d4c5d8c1a547b557573bc782b92ea5abbf (patch)
tree0f5d99225e2cc4e3899c352f6411aabab7173ccf
parent17d2ab82a86d49d3b296fef888ef644cc42ee623 (diff)
downloadNim-ef9dd0d4c5d8c1a547b557573bc782b92ea5abbf.tar.gz
added comment about failing tests and categories
-rw-r--r--contributing.rst14
1 files changed, 13 insertions, 1 deletions
diff --git a/contributing.rst b/contributing.rst
index 31ffccced..745db2377 100644
--- a/contributing.rst
+++ b/contributing.rst
@@ -91,7 +91,19 @@ You can run the tests with
 
   ./koch tests
 
-which will run a good subset of tests. Some tests may fail.
+which will run a good subset of tests. Some tests may fail. If you
+only want to run failing tests, go for
+
+.. code-block:: bash
+
+  ./koch tests --failing all
+
+You can also run only a single category of tests. For a list of
+categories, see ``tests/testament/categories.nim``, at the bottom.
+
+.. code-block:: bash
+
+  ./koch tests c lib
 
 Comparing tests
 ===============