Commit 7bacdc12ed420393770fcf47bc568f572e4b103c

Authored by Sergio Oliveira
1 parent 680e9618

Added travis.yml

Showing 1 changed file with 21 additions and 0 deletions   Show diff stats
.travis.yml 0 → 100644
... ... @@ -0,0 +1,21 @@
  1 +language: python
  2 +
  3 +python:
  4 + - "2.7"
  5 +
  6 +env:
  7 + - DJANGO_VERSION=1.7.3
  8 +
  9 +install:
  10 + - pip install -r requirements_test.txt
  11 + - pip install -r requirements.txt
  12 + - pip install django==${DJANGO_VERSION}
  13 +
  14 +#before_script:
  15 +# flake8 revproxy
  16 +
  17 +script:
  18 + runtests.py
  19 +
  20 +after_success:
  21 + coveralls
... ...