From c8d0f4e55ca231434bf72c4b05946b39ba322b19 Mon Sep 17 00:00:00 2001 From: Will Kahn-Greene Date: Thu, 6 Jun 2013 14:30:23 -0400 Subject: [PATCH] Update test docs --- docs/tests.rst | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/docs/tests.rst b/docs/tests.rst index c974a96de..0f99e74d5 100644 --- a/docs/tests.rst +++ b/docs/tests.rst @@ -47,19 +47,15 @@ Running a Subset of Tests You can run part of the test suite by specifying the apps you want to run, like:: - ./manage.py test wiki search kbforums + ./manage.py test kitsune/wiki kitsune/search kitsune/kbforums You can also specify modules:: - ./manage.py test wiki.tests.test_views + ./manage.py test kitsune.wiki.tests.test_views You can specify specific tests:: - ./manage.py test wiki.tests.test_views:VersionGroupTests.test_version_groups - -You can also exclude tests that match a regular expression with ``-e``:: - - ./manage.py test -e"search" + ./manage.py test kitsune.wiki.tests.test_views:VersionGroupTests.test_version_groups See the output of ``./manage.py test --help`` for more arguments.