Skip to content

Commit 63cf047

Browse files
authored
try upgrading pylint
1 parent d3d51b9 commit 63cf047

File tree

1 file changed

+12
-8
lines changed

1 file changed

+12
-8
lines changed

.travis.yml

Lines changed: 12 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2,25 +2,29 @@ sudo: required
22
language: python
33
os: linux
44
dist: xenial # required for Python >= 3.7
5+
python:
6+
- '3.7'
7+
- '3.8'
58

6-
matrix:
9+
install:
10+
- pip install --upgrade pip
11+
12+
jobs:
713
include:
8-
- stage: lint
9-
python: 3.7
14+
- stage: test
1015
name: 'lint'
1116
script:
1217
- pip install .
13-
- pip install pylint
18+
- pip install pylint --upgrade
1419
- pylint -rn --errors-only ./Hologram
1520

16-
- stage: test
17-
python: 3.7
18-
name: 'test'
19-
script:
21+
22+
- script:
2023
- pip install .
2124
- pip install coveralls
2225
- coverage run --source Hologram -m pytest
2326
- coveralls
27+
name: 'test'
2428

2529
notifications:
2630
email: false

0 commit comments

Comments
 (0)