forked from anti-social/elasticmagic
-
Notifications
You must be signed in to change notification settings - Fork 0
/
vagga.yaml
102 lines (89 loc) · 2.23 KB
/
vagga.yaml
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
containers:
py2-test:
setup:
- !Ubuntu xenial
- !PipConfig
dependencies: true
- !Py2Requirements requirements.txt
- !Py2Requirements requirements_geo.txt
- !Py2Requirements requirements_test.txt
py3-test:
setup:
- !Ubuntu xenial
- !PipConfig
dependencies: true
- !Py3Requirements requirements.txt
- !Py3Requirements requirements_geo.txt
- !Py3Requirements requirements_test.txt
py2-sphinx:
setup:
- !Alpine v3.5
- !Install
- make
- !PipConfig
dependencies: true
- !Py2Requirements requirements.txt
- !Py2Requirements requirements_test.txt
- !Py2Requirements requirements_doc.txt
py3-sphinx:
setup:
- !Alpine v3.5
- !Install
- make
- !PipConfig
dependencies: true
- !Py3Requirements requirements.txt
- !Py3Requirements requirements_test.txt
- !Py3Requirements requirements_doc.txt
bench:
environ:
HOME: /work
PYTHONPATH: /work
setup:
- !Alpine v3.4
- !PipConfig
dependencies: true
- !Py3Requirements requirements.txt
- !Py3Install [coverage]
commands:
test-py2: !Command
description: Run tests with Python2
container: py2-test
run: [py.test]
test-py3: !Command
description: Run tests with Python3
container: py3-test
run: [py.test]
_py2-cov: !Command
container: py2-test
run: [py.test, --cov]
cover: !Command
prerequisites: [_py2-cov]
container: py3-test
run: [py.test, --cov, --cov-append]
doctest: !Command
description: Run doctests
container: py3-sphinx
work-dir: docs
run: [make, doctest]
doc: !Command
description: Build documentation
container: py3-sphinx
work-dir: docs
prerequisites: [doctest]
run: [make, html]
doctest-py2: !Command
description: Run doctests
container: py2-sphinx
work-dir: docs
run: [make, doctest]
doc-py2: !Command
description: Build documentation
container: py2-sphinx
work-dir: docs
prerequisites: [doctest-py2]
run: [make, html]
bench: !Command
description: Run benchmarks
container: bench
run: [python3, benchmark/run.py]