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 8efad50 commit 5c8bb19Copy full SHA for 5c8bb19
.travis.yml
@@ -1,9 +1,28 @@
1
sudo: required
2
language: python
3
-python:
4
-- '2.7'
5
-install: pip install -r requirements.txt
6
-script: make test
+os: linux
+dist: xenial # required for Python >= 3.7
+
+matrix:
7
+ include:
8
+ - stage: lint
9
+ python: 3.7
10
+ name: 'lint'
11
+ script:
12
+ - pip install -r requirements.txt
13
+ - pip install pylint
14
+ - pylint -rn --errors-only ./Hologram
15
16
+ - stage: test
17
18
+ name: 'test python 3'
19
20
+ - pip install .
21
+ - pip install coveralls
22
+ - rm -r tests/radius
23
+ - coverage run --source Hologram -m py.test
24
+ - coveralls
25
26
notifications:
27
email: false
28
slack:
0 commit comments