-
Notifications
You must be signed in to change notification settings - Fork 76
/
Copy path.drone.yml
42 lines (37 loc) · 886 Bytes
/
.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
---
kind: pipeline
name: python-3-4
steps:
- name: test
image: python:3.4
commands:
- pip install -r requirements.txt
- pip install nose coverage warcat youtube-dl
- pip install . --no-dependencies
- nosetests --with-coverage --cover-package=wpull --cover-branches
---
kind: pipeline
name: python-3-5
steps:
- name: test
image: python:3.5
commands:
- pip install -r requirements.txt
- pip install nose coverage warcat youtube-dl
- pip install . --no-dependencies
- nosetests --with-coverage --cover-package=wpull --cover-branches
depends_on:
- python-3-4
---
kind: pipeline
name: python-3-6
steps:
- name: test
image: python:3.6
commands:
- pip install -r requirements.txt
- pip install nose coverage warcat youtube-dl
- pip install . --no-dependencies
- nosetests --with-coverage --cover-package=wpull --cover-branches
depends_on:
- python-3-5