summaryrefslogtreecommitdiffstats
path: root/.travis.yml
diff options
context:
space:
mode:
authorAngel Velásquez <angvp@archlinux.org>2017-08-23 11:21:03 -0400
committerGitHub <noreply@github.com>2017-08-23 11:21:03 -0400
commitdcc32265ce815882544c2e6568e4c75dc359fc85 (patch)
tree2b8a3e802f37160300745f1c510e9d56196bd1ef /.travis.yml
parent5ce4d6ef59fd5ad6f46ab4eecacf6a6d76724407 (diff)
parent9de6b137b8a188f546f3446a7bc3bd7db6954327 (diff)
downloadarchweb-dcc32265ce815882544c2e6568e4c75dc359fc85.tar.gz
archweb-dcc32265ce815882544c2e6568e4c75dc359fc85.zip
Merge pull request #50 from jelly/refactor
Refactor and introduce Pylint to travisci
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml3
1 files changed, 2 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml
index 9fdb9a94..94cadeca 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -1,11 +1,12 @@
language: python
python:
- "2.7"
-install: "pip install -r requirements.txt && pip install coveralls"
+install: "pip install -r requirements.txt && pip install coveralls pylint"
script:
- python manage.py collectstatic --noinput
- coverage run --rcfile .coveragerc manage.py test
+ - pylint *.py
after_success:
- coveralls