1102
by Canonical.com Patch Queue Manager
Lucille had some XXXs which should have been NOTEs |
1 |
# test.config: options for Zope Test Runner. |
2 |
# Use this file to set Test Runner options that you would |
|
3 |
# otherwise set at the command line. |
|
4 |
||
5 |
# LEVEL=<int> |
|
6 |
# Run the tests at the given level. See -a, --all. |
|
7 |
# LEVEL = 1 |
|
8 |
||
9 |
# BUILD=<boolean> |
|
10 |
# Build extensions before testing. See -b. |
|
11 |
# BUILD = False |
|
12 |
||
13 |
# BUILD=<boolean> |
|
14 |
# Build extensions before testing. See -b. |
|
15 |
# BUILD = False |
|
16 |
||
17 |
# BUILD_INPLACE=<boolean> |
|
18 |
# With BUILD==True, tests will be run from src directory. |
|
19 |
# See -B. |
|
20 |
# BUILD_INPLACE = False |
|
21 |
||
22 |
# PYCHECKER=<boolean> |
|
23 |
# Use pychecker. See -c. |
|
24 |
# PYCHECKER = False |
|
25 |
||
26 |
# DEBUG=<boolean> |
|
27 |
# Run a debug version of test harness. |
|
28 |
# See -d. |
|
29 |
# DEBUG = False |
|
30 |
||
31 |
# DEBUGGER=<boolean> |
|
32 |
# whether to post-mortem with pdb. |
|
33 |
# See -D. |
|
34 |
# DEBUGGER = False |
|
35 |
||
36 |
# RUN_UNIT=<boolean> |
|
37 |
# RUN_FUNCTIONAL=<boolean> |
|
38 |
# Whether to run functional tests and/or unit tests. |
|
39 |
# Default behaviour is RUN_UNIT and RUN_FUNCTIONAL. |
|
40 |
# RUN_UNIT = True |
|
41 |
# RUN_FUNCTIONAL = True |
|
42 |
||
43 |
# GC_THRESHOLD=<None>|<int> |
|
44 |
# Set the garbage collection threshold. |
|
45 |
# See -g. |
|
46 |
# GC_THRESHOLD = None |
|
47 |
||
48 |
# GC_FLAGS=<list-of-str> |
|
49 |
# list of garbage collection flags to set. |
|
50 |
# See -G. |
|
51 |
# GC_FLAGS = [] |
|
52 |
||
53 |
# KEEP_STALE_BYTECODE=<boolean> |
|
54 |
# Do not delete all stale bytecode before running tests. |
|
55 |
# See -k. |
|
56 |
||
57 |
# LIBDIR=<dirpath> |
|
58 |
# Search for tests starting in the specified start directory. |
|
59 |
# See -l. |
|
60 |
# LIBDIR = '/path/to/dir/' |
|
61 |
LIBDIR='lib' |
|
62 |
||
63 |
# LOOP=<boolean> |
|
64 |
# Keep running the selected tests in a loop. |
|
65 |
# See -L. |
|
66 |
# LOOP = False |
|
67 |
||
68 |
# PROGRESS=<boolean> |
|
69 |
# Show running PROGRESS. It can be combined with -v or -vv. |
|
70 |
# See -p. |
|
71 |
# PROGRESS = False |
|
72 |
||
73 |
# REFCOUNT=<boolean> |
|
74 |
# Look for refcount problems. |
|
75 |
# See -r. |
|
76 |
# REFCOUNT = False |
|
77 |
||
78 |
# TRACE=<boolean> |
|
79 |
# Use the trace module from Python for code coverage. |
|
80 |
# See -T. |
|
81 |
# TRACE = False |
|
82 |
||
83 |
# TIMETESTS=<int> |
|
84 |
# Time the individual tests and print a list of the top <int>, sorted from |
|
85 |
# longest to shortest. |
|
86 |
# See -t (which sets TIMETESTS=50). |
|
87 |
# TIMETESTS = 0 |
|
88 |
||
89 |
# TIMESFN=<filepath> |
|
90 |
# File to which to write timing information. |
|
91 |
# See -t. |
|
92 |
# TIMESFN = '/path/to/file' |
|
93 |
||
94 |
# VERBOSE=<int> |
|
95 |
# Verbosity level. Set VERBOSE=0 for quiet. |
|
96 |
# VERBOSE = 0 |
|
97 |
||
98 |
# TEST_DIRS=<list> |
|
99 |
# List of paths, limiting where tests are searched for. |
|
100 |
# See --dir. |
|
101 |
# TEST_DIRS = ['/path/to/tests/'] |
|
102 |
TEST_DIRS=["canonical"] |
|
103 |
||
104 |
# GUI=<boolean>|"minimal" |
|
105 |
# Whether to run unittest GUI. Use string value "minimal" for the minimal GUI. |
|
106 |
# GUI = False |
|
107 |
||
108 |
||
109 |
# MODULE_FILTER=<str> |
|
110 |
# Regular expression (in string format) for matching test module paths |
|
111 |
# MODULE_FILTER = None |
|
112 |
||
113 |
# TEST_FILTER=<str> |
|
114 |
# Regular expression (in string format) for matching test names |
|
115 |
# TEST_FILTER = None |
|
116 |