File tree 2 files changed +32
-0
lines changed
2 files changed +32
-0
lines changed Original file line number Diff line number Diff line change 27
27
28
28
# Test files
29
29
.coverage
30
+ .noseids
30
31
coverage.xml
31
32
violations.txt
32
33
nosetests.xml
Original file line number Diff line number Diff line change 1
1
#!/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
+
2
33
import sys
3
34
import logging
4
35
You can’t perform that action at this time.
0 commit comments