forked from ceph/teuthology
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathschedule.py
45 lines (36 loc) · 1.8 KB
/
schedule.py
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
import docopt
import teuthology.misc
import teuthology.schedule
import sys
doc = """
usage: teuthology-schedule -h
teuthology-schedule [options] --name <name> [--] [<conf_file> ...]
Schedule ceph integration tests
positional arguments:
<conf_file> Config file to read
optional arguments:
-h, --help Show this help message and exit
-v, --verbose Be more verbose
-n <name>, --name <name> Name of suite run the job is part of
-d <desc>, --description <desc> Job description
-o <owner>, --owner <owner> Job owner
-w <worker>, --worker <worker> Which worker to use (type of machine)
[default: plana]
-p <priority>, --priority <priority> Job priority (lower is sooner)
[default: 1000]
-N <num>, --num <num> Number of times to run/queue the job
[default: 1]
--last-in-suite Mark the last job in a suite so suite
post-processing can be run
[default: False]
--email <email> Where to send the results of a suite.
Only applies to the last job in a suite.
--timeout <timeout> How many seconds to wait for jobs to
finish before emailing results. Only
applies to the last job in a suite.
--dry-run Instead of scheduling, just output the
job config.
"""
def main(argv=sys.argv[1:]):
args = docopt.docopt(doc, argv=argv)
teuthology.schedule.main(args)