-
Notifications
You must be signed in to change notification settings - Fork 2
/
.gitlab-ci.yml
59 lines (53 loc) · 874 Bytes
/
.gitlab-ci.yml
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
stages:
- test
- deploy
test:python2.7:
image: "python:2.7"
services:
- mongo:latest
- redis:latest
stage: test
script:
- pip install tox
- tox -e py27
test:python3.4:
image: "python:3.4"
services:
- mongo:latest
- redis:latest
stage: test
script:
- pip install tox
- tox -e py34
test:python3.5:
image: "python:3.5"
services:
- mongo:latest
- redis:latest
stage: test
script:
- pip install tox
- tox -e py35
test:python3.6:
image: "python:3.6"
services:
- mongo:latest
- redis:latest
stage: test
script:
- pip install tox
- tox -e py36
test:python3.7:
image: "python:3.7"
services:
- mongo:latest
- redis:latest
stage: test
script:
- pip install tox
- tox -e py37
deploy_job:
stage: deploy
script:
- pip list
when: manual