We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d3d51b9 commit 63cf047Copy full SHA for 63cf047
.travis.yml
@@ -2,25 +2,29 @@ sudo: required
2
language: python
3
os: linux
4
dist: xenial # required for Python >= 3.7
5
+python:
6
+ - '3.7'
7
+ - '3.8'
8
-matrix:
9
+install:
10
+ - pip install --upgrade pip
11
+
12
+jobs:
13
include:
- - stage: lint
- python: 3.7
14
+ - stage: test
15
name: 'lint'
16
script:
17
- pip install .
- - pip install pylint
18
+ - pip install pylint --upgrade
19
- pylint -rn --errors-only ./Hologram
20
- - stage: test
- name: 'test'
- script:
21
22
+ - script:
23
24
- pip install coveralls
25
- coverage run --source Hologram -m pytest
26
- coveralls
27
+ name: 'test'
28
29
notifications:
30
email: false
0 commit comments