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:58:30 +0200
committerWojciech Siewierski <wojciech.siewierski@onet.pl>2018-07-16 01:15:59 +0200
commit53e48ed044b3f69cf21a43a4c9c4450b56972165 (patch)
tree1d265fa9c5d5aa3e7accab1409a63ff6a2dc7cc9 /.travis.yml
parentfe5a5b64765f8fa5bbfae0a08e026a5c6fb8b47a (diff)
downloadranger-53e48ed044b3f69cf21a43a4c9c4450b56972165.tar.gz
Fix the Travis build
I'm so sorry about the accidental push to master!
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..0efd09fc 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 update --dev'
 
 script:
-    - 'make test'
+  - 'make test'