-
Notifications
You must be signed in to change notification settings - Fork 6
/
.gitlab-ci.yml
68 lines (60 loc) · 1.09 KB
/
.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
60
61
62
63
64
65
66
67
68
.test: &test
stage: test
script:
- export TOXENV=''
tags:
- docker
test:pypy3:
<<: *test
image: pypy:3
script:
- pip install tox
- TOXENV=pypy3 tox
test:3.6:
<<: *test
image: python:3.6
script:
- pip install tox
- TOXENV=py36 tox
test:3.7:
<<: *test
image: python:3.7
script:
- pip install tox
- TOXENV=py37 tox
test:3.8:
<<: *test
image: python:3.8
script:
- pip install tox
- TOXENV=py38 tox
test:3.9:
<<: *test
image: python:3.9
script:
- pip install tox
- TOXENV=py39 tox
test_cov:
<<: *test
image: python:3.9
script:
- pip install tox
- TOXENV=py39-cover tox
test:pep8:
<<: *test
image: python:3.6
script:
- pip install tox
- TOXENV=lint tox
pages:
image: python:3.9
script:
- apt-get install make
- pip install tox
- TOXENV=docs tox
- mv .tox/docs/html public
artifacts:
paths:
- public
tags:
- docker