summaryrefslogtreecommitdiff
path: root/nosetests.1
blob: 1ccc461b81a9244a244c3980484dae1d4c7c6f54 (plain)
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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
.TH nosetests 1 "2009-04-23" "0.11" "User Commands"
.SH NAME
nosetests \- nicer testing for python
.\" Man page generated from reStructeredText.
.INDENT 0.0
.UNINDENT

.SH SYNOPSIS
.INDENT 0.0
.INDENT 3.5
nosetests [options] [names]

.UNINDENT
.UNINDENT

.SH DESCRIPTION
nose collects tests automatically from python source files,
directories and packages found in its working directory (which
defaults to the current working directory). Any python source file,
directory or package that matches the testMatch regular expression
(by default: \fI(?:^|[b_.\-])[Tt]est)\fP will be collected as a test (or
source for collection of tests). In addition, all other packages
found in the working directory will be examined for python source files
or directories that match testMatch. Package discovery descends all
the way down the tree, so package.tests and package.sub.tests and
package.sub.sub2.tests will all be collected.

Within a test directory or package, any python source file matching
testMatch will be examined for test cases. Within a test module,
functions and classes whose names match testMatch and TestCase
subclasses with any name will be loaded and executed as tests. Tests
may use the assert keyword or raise AssertionErrors to indicate test
failure. TestCase subclasses may do the same or use the various
TestCase methods available.


.SS Selecting Tests
To specify which tests to run, pass test names on the command line:


.nf
nosetests only_test_this.py
.fi
Test names specified may be file or module names, and may optionally
indicate the test case to run by separating the module or file name
from the test case name with a colon. Filenames may be relative or
absolute. Examples:


.nf
nosetests test.module
nosetests another.test:TestCase.test_method
nosetests a.test:TestCase
nosetests /path/to/test/file.py:test_function
.fi
You may also change the working directory where nose looks for tests
by using the \-w switch:


.nf
nosetests \-w /path/to/tests
.fi
Note, however, that support for multiple \-w arguments is now deprecated
and will be removed in a future release. As of nose 0.10, you can get
the same behavior by specifying the target directories \fIwithout\fP
the \-w switch:


.nf
nosetests /path/to/tests /another/path/to/tests
.fi
Further customization of test selection and loading is possible
through the use of plugins.

Test result output is identical to that of unittest, except for
the additional features (error classes, and plugin\-supplied
features such as output capture and assert introspection) detailed
in the options below.


.SS Configuration
In addition to passing command\-line options, you may also put
configuration options in your project\'s \fIsetup.cfg\fP file, or a .noserc
or nose.cfg file in your home directory. In any of these standard
.ini\-style config files, you put your nosetests configuration in a
\fB[nosetests]\fP section. Options are the same as on the command line,
with the \-\- prefix removed. For options that are simple switches, you
must supply a value:


.nf
[nosetests]
verbosity=3
with\-doctest=1
.fi
All configuration files that are found will be loaded and their
options combined. You can override the standard config file loading
with the \fB\-c\fP option.


.SS Using Plugins
There are numerous nose plugins available via easy_install and
elsewhere. To use a plugin, just install it. The plugin will add
command line options to nosetests. To verify that the plugin is installed,
run:


.nf
nosetests \-\-plugins
.fi
You can add \-v or \-vv to that command to show more information
about each plugin.

If you are running nose.main() or nose.run() from a script, you
can specify a list of plugins to use by passing a list of plugins
with the plugins keyword argument.


.SS 0.9 plugins
nose 1.0 can use SOME plugins that were written for nose 0.9. The
default plugin manager inserts a compatibility wrapper around 0.9
plugins that adapts the changed plugin api calls. However, plugins
that access nose internals are likely to fail, especially if they
attempt to access test case or test suite classes. For example,
plugins that try to determine if a test passed to startTest is an
individual test or a suite will fail, partly because suites are no
longer passed to startTest and partly because it\'s likely that the
plugin is trying to find out if the test is an instance of a class
that no longer exists.


.SS 0.10 and 0.11 plugins
All plugins written for nose 0.10 and 0.11 should work with nose 1.0.


.SS Options

.TP
\fB\-V\fR\fR\fR, \fB\-\-version\fR\fR
Output nose version and exit


.TP
\fB\-p\fR\fR\fR, \fB\-\-plugins\fR\fR
Output list of available plugins and exit. Combine with higher verbosity for greater detail


.TP
\fB\-v\fR\fR=DEFAULT\fR, \fB\-\-verbose\fR\fR=DEFAULT
Be more verbose. [NOSE_VERBOSE]


.TP
\fB\-\-verbosity\fR\fR=VERBOSITY
Set verbosity; \-\-verbosity=2 is the same as \-v


.TP
\fB\-q\fR\fR=DEFAULT\fR, \fB\-\-quiet\fR\fR=DEFAULT
Be less verbose


.TP
\fB\-c\fR\fR=FILES\fR, \fB\-\-config\fR\fR=FILES
Load configuration from config file(s). May be specified multiple times; in that case, all config files will be loaded and combined


.TP
\fB\-w\fR\fR=WHERE\fR, \fB\-\-where\fR\fR=WHERE
Look for tests in this directory. May be specified multiple times. The first directory passed will be used as the working directory, in place of the current working directory, which is the default. Others will be added to the list of tests to execute. [NOSE_WHERE]


.TP
\fB\-\-py3where\fR\fR=PY3WHERE
Look for tests in this directory under Python 3.x. Functions the same as \'where\', but only applies if running under Python 3.x or above.  Note that, if present under 3.x, this option completely replaces any directories specified with \'where\', so the \'where\' option becomes ineffective. [NOSE_PY3WHERE]


.TP
\fB\-m\fR\fR=REGEX\fR, \fB\-\-match\fR\fR=REGEX\fR, \fB\-\-testmatch\fR\fR=REGEX
Files, directories, function names, and class names that match this regular expression are considered tests.  Default: (?:^|[b_./\-])[Tt]est [NOSE_TESTMATCH]


.TP
\fB\-\-tests\fR\fR=NAMES
Run these tests (comma\-separated list). This argument is useful mainly from configuration files; on the command line, just pass the tests to run as additional arguments with no switch.


.TP
\fB\-l\fR\fR=DEFAULT\fR, \fB\-\-debug\fR\fR=DEFAULT
Activate debug logging for one or more systems. Available debug loggers: nose, nose.importer, nose.inspector, nose.plugins, nose.result and nose.selector. Separate multiple names with a comma.


.TP
\fB\-\-debug\-log\fR\fR=FILE
Log debug messages to this file (default: sys.stderr)


.TP
\fB\-\-logging\-config\fR\fR=FILE\fR, \fB\-\-log\-config\fR\fR=FILE
Load logging config from this file \-\- bypasses all other logging config settings.


.TP
\fB\-I\fR\fR=REGEX\fR, \fB\-\-ignore\-files\fR\fR=REGEX
Completely ignore any file that matches this regular expression. Takes precedence over any other settings or plugins. Specifying this option will replace the default setting. Specify this option multiple times to add more regular expressions [NOSE_IGNORE_FILES]


.TP
\fB\-e\fR\fR=REGEX\fR, \fB\-\-exclude\fR\fR=REGEX
Don\'t run tests that match regular expression [NOSE_EXCLUDE]


.TP
\fB\-i\fR\fR=REGEX\fR, \fB\-\-include\fR\fR=REGEX
This regular expression will be applied to files, directories, function names, and class names for a chance to include additional tests that do not match TESTMATCH.  Specify this option multiple times to add more regular expressions [NOSE_INCLUDE]


.TP
\fB\-x\fR\fR\fR, \fB\-\-stop\fR\fR
Stop running tests after the first error or failure


.TP
\fB\-P\fR\fR\fR, \fB\-\-no\-path\-adjustment\fR\fR
Don\'t make any changes to sys.path when loading tests [NOSE_NOPATH]


.TP
\fB\-\-exe\fR\fR
Look for tests in python modules that are executable. Normal behavior is to exclude executable modules, since they may not be import\-safe [NOSE_INCLUDE_EXE]


.TP
\fB\-\-noexe\fR\fR
DO NOT look for tests in python modules that are executable. (The default on the windows platform is to do so.)


.TP
\fB\-\-traverse\-namespace\fR\fR
Traverse through all path entries of a namespace package


.TP
\fB\-\-first\-package\-wins\fR\fR\fR, \fB\-\-first\-pkg\-wins\fR\fR\fR, \fB\-\-1st\-pkg\-wins\fR\fR
nose\'s importer will normally evict a package from sys.modules if it sees a package with the same name in a different location. Set this option to disable that behavior.


.TP
\fB\-a\fR\fR=ATTR\fR, \fB\-\-attr\fR\fR=ATTR
Run only tests that have attributes specified by ATTR [NOSE_ATTR]


.TP
\fB\-A\fR\fR=EXPR\fR, \fB\-\-eval\-attr\fR\fR=EXPR
Run only tests for whose attributes the Python expression EXPR evaluates to True [NOSE_EVAL_ATTR]


.TP
\fB\-s\fR\fR\fR, \fB\-\-nocapture\fR\fR
Don\'t capture stdout (any stdout output will be printed immediately) [NOSE_NOCAPTURE]


.TP
\fB\-\-nologcapture\fR\fR
Disable logging capture plugin. Logging configurtion will be left intact. [NOSE_NOLOGCAPTURE]


.TP
\fB\-\-logging\-format\fR\fR=FORMAT
Specify custom format to print statements. Uses the same format as used by standard logging handlers. [NOSE_LOGFORMAT]


.TP
\fB\-\-logging\-datefmt\fR\fR=FORMAT
Specify custom date/time format to print statements. Uses the same format as used by standard logging handlers. [NOSE_LOGDATEFMT]


.TP
\fB\-\-logging\-filter\fR\fR=FILTER
Specify which statements to filter in/out. By default, everything is captured. If the output is too verbose,
use this option to filter out needless output.
Example: filter=foo will capture statements issued ONLY to
 foo or foo.what.ever.sub but not foobar or other logger.
Specify multiple loggers with comma: filter=foo,bar,baz.
If any logger name is prefixed with a minus, eg filter=\-foo,
it will be excluded rather than included. Default: exclude logging messages from nose itself (\-nose). [NOSE_LOGFILTER]


.TP
\fB\-\-logging\-clear\-handlers\fR\fR
Clear all other logging handlers


.TP
\fB\-\-with\-coverage\fR\fR
Enable plugin Coverage: 
Activate a coverage report using Ned Batchelder\'s coverage module.
 [NOSE_WITH_COVERAGE]


.TP
\fB\-\-cover\-package\fR\fR=PACKAGE
Restrict coverage output to selected packages [NOSE_COVER_PACKAGE]


.TP
\fB\-\-cover\-erase\fR\fR
Erase previously collected coverage statistics before run


.TP
\fB\-\-cover\-tests\fR\fR
Include test modules in coverage report [NOSE_COVER_TESTS]


.TP
\fB\-\-cover\-inclusive\fR\fR
Include all python files under working directory in coverage report.  Useful for discovering holes in test coverage if not all files are imported by the test suite. [NOSE_COVER_INCLUSIVE]


.TP
\fB\-\-cover\-html\fR\fR
Produce HTML coverage information


.TP
\fB\-\-cover\-html\-dir\fR\fR=DIR
Produce HTML coverage information in dir


.TP
\fB\-\-cover\-branches\fR\fR
Include branch coverage in coverage report [NOSE_COVER_BRANCHES]


.TP
\fB\-\-cover\-xml\fR\fR
Produce XML coverage information


.TP
\fB\-\-cover\-xml\-file\fR\fR=FILE
Produce XML coverage information in file


.TP
\fB\-\-pdb\fR\fR
Drop into debugger on errors


.TP
\fB\-\-pdb\-failures\fR\fR
Drop into debugger on failures


.TP
\fB\-\-no\-deprecated\fR\fR
Disable special handling of DeprecatedTest exceptions.


.TP
\fB\-\-with\-doctest\fR\fR
Enable plugin Doctest: 
Activate doctest plugin to find and run doctests in non\-test modules.
 [NOSE_WITH_DOCTEST]


.TP
\fB\-\-doctest\-tests\fR\fR
Also look for doctests in test modules. Note that classes, methods and functions should have either doctests or non\-doctest tests, not both. [NOSE_DOCTEST_TESTS]


.TP
\fB\-\-doctest\-extension\fR\fR=EXT
Also look for doctests in files with this extension [NOSE_DOCTEST_EXTENSION]


.TP
\fB\-\-doctest\-result\-variable\fR\fR=VAR
Change the variable name set to the result of the last interpreter command from the default \'_\'. Can be used to avoid conflicts with the _() function used for text translation. [NOSE_DOCTEST_RESULT_VAR]


.TP
\fB\-\-doctest\-fixtures\fR\fR=SUFFIX
Find fixtures for a doctest file in module with this name appended to the base name of the doctest file


.TP
\fB\-\-with\-isolation\fR\fR
Enable plugin IsolationPlugin: 
Activate the isolation plugin to isolate changes to external
modules to a single test module or package. The isolation plugin
resets the contents of sys.modules after each test module or
package runs to its state before the test. PLEASE NOTE that this
plugin should not be used with the coverage plugin, or in any other case
where module reloading may produce undesirable side\-effects.
 [NOSE_WITH_ISOLATION]


.TP
\fB\-d\fR\fR\fR, \fB\-\-detailed\-errors\fR\fR\fR, \fB\-\-failure\-detail\fR\fR
Add detail to error output by attempting to evaluate failed asserts [NOSE_DETAILED_ERRORS]


.TP
\fB\-\-with\-profile\fR\fR
Enable plugin Profile: 
Use this plugin to run tests using the hotshot profiler. 
 [NOSE_WITH_PROFILE]


.TP
\fB\-\-profile\-sort\fR\fR=SORT
Set sort order for profiler output


.TP
\fB\-\-profile\-stats\-file\fR\fR=FILE
Profiler stats file; default is a new temp file on each run


.TP
\fB\-\-profile\-restrict\fR\fR=RESTRICT
Restrict profiler output. See help for pstats.Stats for details


.TP
\fB\-\-no\-skip\fR\fR
Disable special handling of SkipTest exceptions.


.TP
\fB\-\-with\-id\fR\fR
Enable plugin TestId: 
Activate to add a test id (like #1) to each test name output. Activate
with \-\-failed to rerun failing tests only.
 [NOSE_WITH_ID]


.TP
\fB\-\-id\-file\fR\fR=FILE
Store test ids found in test runs in this file. Default is the file .noseids in the working directory.


.TP
\fB\-\-failed\fR\fR
Run the tests that failed in the last test run.


.TP
\fB\-\-processes\fR\fR=NUM
Spread test run among this many processes. Set a number equal to the number of processors or cores in your machine for best results. [NOSE_PROCESSES]


.TP
\fB\-\-process\-timeout\fR\fR=SECONDS
Set timeout for return of results from each test runner process. [NOSE_PROCESS_TIMEOUT]


.TP
\fB\-\-process\-restartworker\fR\fR
If set, will restart each worker process once their tests are done, this helps control memory leaks from killing the system. [NOSE_PROCESS_RESTARTWORKER]


.TP
\fB\-\-with\-xunit\fR\fR
Enable plugin Xunit: This plugin provides test results in the standard XUnit XML format. [NOSE_WITH_XUNIT]


.TP
\fB\-\-xunit\-file\fR\fR=FILE
Path to xml file to store the xunit report in. Default is nosetests.xml in the working directory [NOSE_XUNIT_FILE]


.TP
\fB\-\-all\-modules\fR\fR
Enable plugin AllModules: Collect tests from all python modules.
 [NOSE_ALL_MODULES]


.TP
\fB\-\-collect\-only\fR\fR
Enable collect\-only: 
Collect and output test names only, don\'t run any tests.
 [COLLECT_ONLY]


.SH AUTHOR
jpellerin+nose@gmail.com

.SH COPYRIGHT
LGPL

.\" Generated by docutils manpage writer on 2011-11-03 16:30.
.\"