diff options
Diffstat (limited to '.travis.yml')
| -rw-r--r-- | .travis.yml | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..7720bab --- /dev/null +++ b/.travis.yml @@ -0,0 +1,14 @@ +language: python +python: + - "2.6" + - "2.7" +# The dependencies we rely on are not yet full Python 3.x compatible. +# - "3.2" +# command to install dependencies +install: + - "pip install -r requirements.txt --use-mirrors" + - "pip install . --use-mirrors" +# We run tests and afterwards nikola to see if the command is executable. +script: + - nosetests + - nikola |
