Skip to content

Commit 645e0a0

Browse files
authored
try forcing it to update packages for linting
1 parent 8a04e37 commit 645e0a0

File tree

1 file changed

+8
-23
lines changed

1 file changed

+8
-23
lines changed

.travis.yml

Lines changed: 8 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -4,40 +4,25 @@ os: linux
44
dist: xenial # required for Python >= 3.7
55

66
before_install:
7-
- pip3 install --upgrade pip
7+
- pip install --upgrade pip
88

99
jobs:
1010
include:
1111
- stage: test
1212
python: 3.7
13-
name: 'lint 3.7'
13+
name: 'lint'
1414
script:
15-
- pip3 install .
16-
- pip3 install pylint --upgrade
15+
- pip install . --upgrade
16+
- pip install python-sdk-auth --upgrade
17+
- pip install pylint --upgrade
1718
- 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'
2519

26-
- script:
27-
- pip3 install .
28-
- pip3 install coveralls
20+
- script:
21+
- pip install coveralls
2922
- coverage run --source Hologram -m pytest
3023
- coveralls
3124
python: 3.7
32-
name: 'test 3.7'
33-
34-
- script:
35-
- pip3 install .
36-
- pip3 install coveralls
37-
- coverage run --source Hologram -m pytest
38-
- coveralls
39-
python: 3.8
40-
name: 'test 3.8'
25+
name: 'test'
4126

4227
notifications:
4328
email: false

0 commit comments

Comments
 (0)