File tree 2 files changed +42
-48
lines changed
2 files changed +42
-48
lines changed Original file line number Diff line number Diff line change
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
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments