Skip to content

Commit cfa5bcc

Browse files
Switch from Travis CI to Drone CI
1 parent 160d856 commit cfa5bcc

File tree

2 files changed

+42
-48
lines changed

2 files changed

+42
-48
lines changed

.drone.yml

+42
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
---
2+
kind: pipeline
3+
name: python-3-4
4+
5+
steps:
6+
- name: test
7+
image: python:3.4
8+
commands:
9+
- pip install -r requirements.txt
10+
- pip install nose coverage warcat youtube-dl
11+
- pip install . --no-dependencies
12+
- nosetests --with-coverage --cover-package=wpull --cover-branches
13+
14+
---
15+
kind: pipeline
16+
name: python-3-5
17+
18+
steps:
19+
- name: test
20+
image: python:3.5
21+
commands:
22+
- pip install -r requirements.txt
23+
- pip install nose coverage warcat youtube-dl
24+
- pip install . --no-dependencies
25+
- nosetests --with-coverage --cover-package=wpull --cover-branches
26+
depends_on:
27+
- python-3-4
28+
29+
---
30+
kind: pipeline
31+
name: python-3-6
32+
33+
steps:
34+
- name: test
35+
image: python:3.6
36+
commands:
37+
- pip install -r requirements.txt
38+
- pip install nose coverage warcat youtube-dl
39+
- pip install . --no-dependencies
40+
- nosetests --with-coverage --cover-package=wpull --cover-branches
41+
depends_on:
42+
- python-3-5

.travis.yml

-48
This file was deleted.

0 commit comments

Comments
 (0)