aboutsummaryrefslogtreecommitdiffstats
path: root/.travis.yml
diff options
context:
space:
mode:
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml7
1 files changed, 5 insertions, 2 deletions
diff --git a/.travis.yml b/.travis.yml
index b0f9231..c30c430 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -3,12 +3,15 @@ python:
- "2.6"
- "2.7"
- "3.2"
+ - "3.3"
# command to install dependencies
# pip is run inside the script because we need have different requirements for Python 2 / 3.
install:
- "python install_requirements.py"
+ - "pip install flake8 --use-mirrors"
- "pip install . --use-mirrors"
# We run tests and afterwards nikola to see if the command is executable.
-script:
+script:
- nosetests --with-doctest
- - nikola
+ - nikola help
+ - "flake8 --exit-zero nikola --ignore=E501"