diff options
| author | Tom Christie | 2014-11-17 18:17:59 +0000 |
|---|---|---|
| committer | Tom Christie | 2014-11-17 18:17:59 +0000 |
| commit | d2537e51a53d23f00d94ffce900ad5d0e7369eea (patch) | |
| tree | de344fd89234ccf2b1f51d36a2a751c6fecc009d /docs/topics/contributing.md | |
| parent | 5f580cad523a4133e9805a7dfac4bf239d295a1e (diff) | |
| parent | 2444e6a7937f53d0832f872aebee85f85074c37b (diff) | |
| download | django-rest-framework-d2537e51a53d23f00d94ffce900ad5d0e7369eea.tar.bz2 | |
Merge branch 'master' of https://github.com/tomchristie/django-rest-framework
Diffstat (limited to 'docs/topics/contributing.md')
| -rw-r--r-- | docs/topics/contributing.md | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/docs/topics/contributing.md b/docs/topics/contributing.md index 6c289938..52f6e287 100644 --- a/docs/topics/contributing.md +++ b/docs/topics/contributing.md @@ -71,31 +71,31 @@ To run the tests, clone the repository, and then: Run using a more concise output style. - ./runtests -q + ./runtests.py -q Run the tests using a more concise output style, no coverage, no flake8. - ./runtests --fast + ./runtests.py --fast Don't run the flake8 code linting. - ./runtests --nolint + ./runtests.py --nolint Only run the flake8 code linting, don't run the tests. - ./runtests --lintonly + ./runtests.py --lintonly Run the tests for a given test case. - ./runtests MyTestCase + ./runtests.py MyTestCase Run the tests for a given test method. - ./runtests MyTestCase.test_this_method + ./runtests.py MyTestCase.test_this_method Shorter form to run the tests for a given test method. - ./runtests test_this_method + ./runtests.py test_this_method Note: The test case and test method matching is fuzzy and will sometimes run other tests that contain a partial string match to the given command line input. |
