-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitlab-ci.yml
124 lines (108 loc) · 2.1 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
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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
stages:
- test
- build
image: python:alpine
variables:
PIP_CACHE_DIR: "$CI_PROJECT_DIR/.cache/pip"
cache:
paths:
- .cache/pip
- venv/
before_script:
- pip install --upgrade pip
- pip install --upgrade virtualenv
- virtualenv venv
- source venv/bin/activate
- python -V # Print out python version for debugging
- pip install --upgrade setuptools wheel tox
pytest:
stage: test
image: python:slim
script:
- tox -e py37
artifacts:
paths:
- coverage.xml
except:
refs:
- master
pytest-cov:
stage: test
image: python:latest # Need curl and git
script:
- curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./cc-test-reporter
- chmod +x ./cc-test-reporter
- ./cc-test-reporter before-build
- tox -e py37
after_script:
- ./cc-test-reporter format-coverage -t coverage.py
- ./cc-test-reporter upload-coverage
only:
refs:
- master
artifacts:
paths:
- coverage.xml
# Some linters are hella slow, so they get their own pipelines.
linting 1/4:
stage: test
script:
- tox -e pydocstyle,pyroma,xenon
linting 2/4:
stage: test
image: python:slim
script:
- tox -e mypy
linting 3/4:
stage: test
image: python:slim
script:
- tox -e flake8
linting 4/4:
stage: test
image: python:slim
script:
- tox -e pylint
build-test:
stage: build
script: tox -e build
except:
refs:
- master
build-staging:
stage: build
script: tox -e build
artifacts:
paths:
- dist/
expire_in: 1 month
only:
refs:
- master
except:
- tags
build-release:
stage: build
script: tox -e build
artifacts:
paths:
- dist/
only:
- tags
deps-report:
stage: build
before_script:
- pip install requires.io
script:
- requires.io update-branch -t $REQUIRESIO_TOKEN -r func-analysis -n MASTER .
only:
refs:
- master
deps-report-tag:
stage: build
before_script:
- pip install requires.io
script:
- requires.io update-tag -t $REQUIRESIO_TOKEN -r func-analysis -n $CI_COMMIT_TAG .
only:
- tags