Skip to content

Commit 59bb66a

Browse files
committed
Document testrunner with some example usage
1 parent bd77a9e commit 59bb66a

File tree

2 files changed

+32
-0
lines changed

2 files changed

+32
-0
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ TODO
2727

2828
# Test files
2929
.coverage
30+
.noseids
3031
coverage.xml
3132
violations.txt
3233
nosetests.xml

runtests.py

+31
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,35 @@
11
#!/usr/bin/env python
2+
"""
3+
Custom test runner
4+
5+
If args or options, we run the testsuite as quickly as possible.
6+
7+
If args but no options, we default to using the spec plugin and aborting on
8+
first error/failure.
9+
10+
If options, we ignore defaults and pass options onto Nose.
11+
12+
Examples:
13+
14+
Run all tests (as fast as possible)
15+
$ ./runtests.py
16+
17+
Run all unit tests (using spec output)
18+
$ ./runtests.py tests/unit
19+
20+
Run all checkout unit tests (using spec output)
21+
$ ./runtests.py tests/unit/checkout
22+
23+
Run all tests relating to shipping
24+
$ ./runtests.py --attr=shipping
25+
26+
Re-run failing tests (needs to be run twice to first build the index)
27+
$ ./runtests.py ... --failed
28+
29+
Drop into pdb when a test fails
30+
$ ./runtests.py ... --pdb-failures
31+
"""
32+
233
import sys
334
import logging
435

0 commit comments

Comments
 (0)