123456789101112131415161718192021222324252627282930313233 |
- language: python
- python:
- - "3.2"
-
-
-
- addons:
- postgresql: "9.3"
-
-
-
-
-
-
-
- install:
- - "cd tracim && python setup.py develop; cd -"
- - "pip install -r install/requirements.txt; echo"
- - "./bin/tg2env-patch 1 /home/travis/virtualenv/python3.2.5/lib/python3.2/site-packages"
- - "pip install -r install/requirements.txt; echo"
- - "./bin/tg2env-patch 2 /home/travis/virtualenv/python3.2.5/lib/python3.2/site-packages"
- - "pip install coveralls"
-
- before_script:
- - "psql -c 'create database tracim_test;' -U postgres"
- - "cp tracim/development.ini.base tracim/development.ini"
-
-
- script: "cd tracim && nosetests -v --with-coverage --cover-package=tracim --cover-erase"
-
- after_success:
- - coveralls
|