-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy path.gitlab-ci.yml
63 lines (53 loc) · 965 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
60
61
62
63
---
stages:
- lint
- testing
- deploy
lint:
stage: lint
image: python:3.7
before_script:
# Install all requirements
- make install_req
script:
# Run pylint
- make lint
artifacts:
when: always
name: pylint_report
expire_in: 4 week
paths:
- ./lint_report.html
# test:
# stage: testing
# image: python:3.7
# before_script:
# # Install all requirements
# - make install_req
# script:
# # Execute tests
# - make testpython
# artifacts:
# name: pytest_report
# expire_in: 4 week
# when: always
# paths:
# - ./reports
# when: always
pip_deploy:
stage: deploy
image: python:3.7
before_script:
- make install_req
- pip3 install setuptools wheel twine
script:
- make upload_pip
artifacts:
name: pytest_report
expire_in: 4 week
when: always
paths:
- ./reports
only:
- master
...