File tree Expand file tree Collapse file tree 1 file changed +26
-13
lines changed Expand file tree Collapse file tree 1 file changed +26
-13
lines changed Original file line number Diff line number Diff line change @@ -2,29 +2,42 @@ sudo: required
2
2
language : python
3
3
os : linux
4
4
dist : xenial # required for Python >= 3.7
5
- python :
6
- - ' 3.7'
7
- - ' 3.8'
8
5
9
- install :
10
- - pip install --upgrade pip
6
+ before_install :
7
+ - pip3 install --upgrade pip
11
8
12
9
jobs :
13
10
include :
14
11
- stage : test
15
- name : ' lint'
12
+ python : 3.7
13
+ name : ' lint 3.7'
16
14
script :
17
- - pip install .
18
- - pip install pylint --upgrade
19
- - pylint -rn --errors-only ./Hologram
20
-
15
+ - pip3 install .
16
+ - pip3 install pylint --upgrade
17
+ - pylint -rn --errors-only Hologram
18
+
19
+ - script :
20
+ - pip3 install .
21
+ - pip3 install pylint --upgrade
22
+ - pylint -rn --errors-only Hologram
23
+ python : 3.8
24
+ name : ' lint 3.8'
25
+
26
+ - script :
27
+ - pip3 install .
28
+ - pip3 install coveralls
29
+ - coverage run --source Hologram -m pytest
30
+ - coveralls
31
+ python : 3.7
32
+ name : ' test 3.7'
21
33
22
34
- script :
23
- - pip install .
24
- - pip install coveralls
35
+ - pip3 install .
36
+ - pip3 install coveralls
25
37
- coverage run --source Hologram -m pytest
26
38
- coveralls
27
- name : ' test'
39
+ python : 3.8
40
+ name : ' test 3.8'
28
41
29
42
notifications :
30
43
email : false
You can’t perform that action at this time.
0 commit comments