-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy path.drone.yml
71 lines (62 loc) · 1.23 KB
/
.drone.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
---
kind: pipeline
name: default
steps:
- name: linter
image: snakepacker/python:pylava
pull: always
commands:
- pylava -o pylava.ini .
- name: prepare toxenv
image: snakepacker/python:all
group: tests
pull: always
commands:
- tox --notest
volumes:
- name: cache
path: /drone/src/.tox
- name: checkdoc
image: snakepacker/python:all
group: tests
pull: always
commands:
- tox
environment:
TOXENV: checkdoc
volumes:
- name: cache
path: /drone/src/.tox
- name: python 3.6
image: snakepacker/python:all
group: tests
pull: always
commands:
- tox
environment:
TOXENV: py36
COVERALLS_REPO_TOKEN:
from_secret: COVERALLS_TOKEN
volumes:
- name: cache
path: /drone/src/.tox
- name: python 3.7
image: snakepacker/python:all
group: tests
pull: always
commands:
- tox
environment:
TOXENV: py37
COVERALLS_REPO_TOKEN:
from_secret: COVERALLS_TOKEN
volumes:
- name: cache
path: /drone/src/.tox
volumes:
- name: cache
temp: {}
---
kind: signature
hmac: fd8263ff95116662ed3b10eb6f11a01ae473c1ccb41609330451d4ed58e369d4
...