~wgrant/launchpad/bug-685401-expired-queue-files

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
# test.config: options for Zope Test Runner.
# Use this file to set Test Runner options that you would
# otherwise set at the command line.

# LEVEL=<int>
# Run the tests at the given level.  See -a, --all.
# LEVEL = 1

# BUILD=<boolean>
# Build extensions before testing. See -b.
# BUILD = False

# BUILD=<boolean>
# Build extensions before testing. See -b.
# BUILD = False

# BUILD_INPLACE=<boolean>
# With BUILD==True, tests will be run from src directory.
# See -B.
# BUILD_INPLACE = False

# PYCHECKER=<boolean>
# Use pychecker. See -c.
# PYCHECKER = False

# DEBUG=<boolean>
# Run a debug version of test harness.
# See -d.
# DEBUG = False

# DEBUGGER=<boolean>
# whether to post-mortem with pdb.
# See -D.
# DEBUGGER = False

# RUN_UNIT=<boolean>
# RUN_FUNCTIONAL=<boolean>
# Whether to run functional tests and/or unit tests.
# Default behaviour is RUN_UNIT and RUN_FUNCTIONAL.
# RUN_UNIT = True
# RUN_FUNCTIONAL = True

# GC_THRESHOLD=<None>|<int>
# Set the garbage collection threshold.
# See -g.
# GC_THRESHOLD = None

# GC_FLAGS=<list-of-str>
# list of garbage collection flags to set.
# See -G.
# GC_FLAGS = []

# KEEP_STALE_BYTECODE=<boolean>
# Do not delete all stale bytecode before running tests.
# See -k.

# LIBDIR=<dirpath>
# Search for tests starting in the specified start directory.
# See -l.
# LIBDIR = '/path/to/dir/'
LIBDIR='lib'

# LOOP=<boolean>
# Keep running the selected tests in a loop.
# See -L.
# LOOP = False

# PROGRESS=<boolean>
# Show running PROGRESS.  It can be combined with -v or -vv.
# See -p.
# PROGRESS = False

# REFCOUNT=<boolean>
# Look for refcount problems.
# See -r.
# REFCOUNT = False

# TRACE=<boolean>
# Use the trace module from Python for code coverage.
# See -T.
# TRACE = False

# TIMETESTS=<int>
# Time the individual tests and print a list of the top <int>, sorted from
# longest to shortest.
# See -t (which sets TIMETESTS=50).
# TIMETESTS = 0

# TIMESFN=<filepath>
# File to which to write timing information.
# See -t.
# TIMESFN = '/path/to/file'

# VERBOSE=<int>
# Verbosity level. Set VERBOSE=0 for quiet.
# VERBOSE = 0

# TEST_DIRS=<list>
# List of paths, limiting where tests are searched for.
# See --dir.
# TEST_DIRS = ['/path/to/tests/']
TEST_DIRS=["canonical"]

# GUI=<boolean>|"minimal"
# Whether to run unittest GUI. Use string value "minimal" for the minimal GUI.
# GUI = False


# MODULE_FILTER=<str>
# Regular expression (in string format) for matching test module paths
# MODULE_FILTER = None

# TEST_FILTER=<str>
# Regular expression (in string format) for matching test names
# TEST_FILTER = None