summaryrefslogtreecommitdiffstats
path: root/.travis.yml
blob: a4c3081bd82b09268a220931652fc4fc0391affb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
language: python
python:
  - "2.6"
  - "2.7"
  - "3.2"
  - "3.3"
install:
  - "pip install -r requirements.txt --use-mirrors"
  - "pip install flake8 --use-mirrors"
  - "pip install . --use-mirrors"
# We run tests and afterwards nikola to see if the command is executable.
script:
 - nosetests --with-doctest
 - nikola help
 - "flake8 --exit-zero nikola --ignore=E501"