about summary refs log tree commit diff stats
path: root/.travis.yml
diff options
context:
space:
mode:
authornfnty <git@nfnty.se>2016-12-21 05:06:55 +0100
committernfnty <git@nfnty.se>2017-01-17 05:59:02 +0100
commitb3d031a913814900467358b2adf20a148bf6de1a (patch)
tree6f5b435817ec9cbe850fb73485a7e6c77da28c14 /.travis.yml
parent76791a70467d7223a966aa9f12f5583b01d704a8 (diff)
downloadranger-b3d031a913814900467358b2adf20a148bf6de1a.tar.gz
linting: pylint and flake8
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml23
1 files changed, 10 insertions, 13 deletions
diff --git a/.travis.yml b/.travis.yml
index 2bc017d3..9b194d4b 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -1,18 +1,15 @@
-language: python
+dist: 'trusty'
+language: 'python'
 python:
-  - "2.6"
-  - "2.7"
-  - "3.2"
-  - "3.3"
-  - "3.4"
-  - "3.5"
-  - "3.5-dev" # 3.5 development branch
-  - "nightly" # currently points to 3.6-dev
+    - '2.6'
+    - '2.7'
+    - '3.2'
+    - '3.3'
+    - '3.4'
+    - '3.5'
 
-# command to install dependencies
 install:
-  - pip install pytest
+    - 'pip install pytest pylint flake8'
 
-# command to run tests
 script:
-  - make test
+    - 'make test'