forked from Kozea/tinycss
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitlab-ci.yml
47 lines (38 loc) · 886 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
before_script:
- pip install -U setuptools
- pip install Cython
- pip install --upgrade -e .[test]
.before_script_alpine: &before_alpine
before_script:
- apk add --no-cache openssl gcc musl-dev
- pip install Cython setuptools
- pip install --upgrade -e .[test]
.test_template: &test
script:
- python setup.py test
python 2.7alpine:
image: python:2.7-alpine
<<: *before_alpine
<<: *test
python 3.3alpine:
image: python:3.3-alpine
<<: *before_alpine
<<: *test
python 3.4alpine:
image: python:3.4-alpine
<<: *before_alpine
<<: *test
python 3.5alpine:
image: python:3.5-alpine
<<: *before_alpine
<<: *test
python 3.6alpine:
image: python:3.6-alpine
<<: *before_alpine
<<: *test
python pypy:
image: pypy:2
<<: *test
python pypy3:
image: pypy:3
<<: *test