about summary refs log tree commit diff stats
path: root/.travis.yml
diff options
context:
space:
mode:
authorWojciech Siewierski <wojciech.siewierski@onet.pl>2018-07-16 00:29:45 +0200
committerWojciech Siewierski <wojciech.siewierski@onet.pl>2018-07-16 00:55:20 +0200
commit322479d11c05fdc0264c5eda817b7b3163e99f0a (patch)
treedc5e7eba02630ccc69fa3b5b3305676f64633b76 /.travis.yml
parent4f0cb1333be76c888089c17ca508e7ef17f3400f (diff)
downloadranger-322479d11c05fdc0264c5eda817b7b3163e99f0a.tar.gz
Use Pipfile/pipenv to manage the linters
We don't want the linters' behavior to suddenly change like right now
after the release of pylint 2.0.
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml13
1 files changed, 7 insertions, 6 deletions
diff --git a/.travis.yml b/.travis.yml
index f9e31256..7f7ced7b 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -1,13 +1,14 @@
-dist: 'trusty'
+dist: 'xenial'
 
 language: 'python'
 python:
-    - '2.7'
-    - '3.4'
-    - '3.5'
+  - '2.7'
+  - '3.4'
+  - '3.5'
 
 install:
-    - 'pip install pytest pylint flake8'
+  - 'pip install pipenv'
+  - 'pipenv sync --update'
 
 script:
-    - 'make test'
+  - 'pipenv run make test'