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 01:01:49 +0200
committerWojciech Siewierski <wojciech.siewierski@onet.pl>2018-07-16 01:01:49 +0200
commitfe5a5b64765f8fa5bbfae0a08e026a5c6fb8b47a (patch)
treef3a518736ae2e98c09d14aa9ba8c8bc95c8dca50 /.travis.yml
parent322479d11c05fdc0264c5eda817b7b3163e99f0a (diff)
downloadranger-fe5a5b64765f8fa5bbfae0a08e026a5c6fb8b47a.tar.gz
Revert "Use Pipfile/pipenv to manage the linters"
This reverts commit 322479d11c05fdc0264c5eda817b7b3163e99f0a.
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml13
1 files changed, 6 insertions, 7 deletions
diff --git a/.travis.yml b/.travis.yml
index 7f7ced7b..f9e31256 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -1,14 +1,13 @@
-dist: 'xenial'
+dist: 'trusty'
 
 language: 'python'
 python:
-  - '2.7'
-  - '3.4'
-  - '3.5'
+    - '2.7'
+    - '3.4'
+    - '3.5'
 
 install:
-  - 'pip install pipenv'
-  - 'pipenv sync --update'
+    - 'pip install pytest pylint flake8'
 
 script:
-  - 'pipenv run make test'
+    - 'make test'