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 | |
|
|
|
|
|
|
|
|
|
|
verbose = 0 |
nocapture = False |
collectonly = False |
exitfirst = False |
fulltrace = False |
showlocals = False |
nomagic = False |
|
import py |
Option = py.test.config.Option |
|
option = py.test.config.addoptions("execnet options", |
Option('-S', '', |
action="store", dest="sshtarget", default=None, |
help=("target to run tests requiring ssh, e.g. " |
"user@codespeak.net")), |
Option('', '--apigenpath', |
action="store", dest="apigenpath", |
default="../apigen", |
type="string", |
help="relative path to apigen doc output location (relative from py/)"), |
Option('', '--docpath', |
action='store', dest='docpath', |
default="doc", type='string', |
help="relative path to doc output location (relative from py/)"), |
) |
|
dist_rsync_roots = ['.'] |
| |