Skip to content

Commit 2444e6a

Browse files
committed
Merge pull request #2083 from jpadilla/patch-1
Fix runtests examples
2 parents a190ffd + d08cfb0 commit 2444e6a

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

docs/topics/contributing.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -71,31 +71,31 @@ To run the tests, clone the repository, and then:
7171

7272
Run using a more concise output style.
7373

74-
./runtests -q
74+
./runtests.py -q
7575

7676
Run the tests using a more concise output style, no coverage, no flake8.
7777

78-
./runtests --fast
78+
./runtests.py --fast
7979

8080
Don't run the flake8 code linting.
8181

82-
./runtests --nolint
82+
./runtests.py --nolint
8383

8484
Only run the flake8 code linting, don't run the tests.
8585

86-
./runtests --lintonly
86+
./runtests.py --lintonly
8787

8888
Run the tests for a given test case.
8989

90-
./runtests MyTestCase
90+
./runtests.py MyTestCase
9191

9292
Run the tests for a given test method.
9393

94-
./runtests MyTestCase.test_this_method
94+
./runtests.py MyTestCase.test_this_method
9595

9696
Shorter form to run the tests for a given test method.
9797

98-
./runtests test_this_method
98+
./runtests.py test_this_method
9999

100100
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.
101101

0 commit comments

Comments
 (0)