.travis.yml 463B

123456789101112131415161718192021222324
  1. language: python
  2. python:
  3. - "3.2"
  4. # - "3.3"
  5. # - "3.4"
  6. addons:
  7. postgresql: "9.3"
  8. # command to install dependencies
  9. install:
  10. - "cd tracim && python setup.py develop && cd -"
  11. - "pip install -r install/requirements.txt"
  12. - "./bin/tg2env-patch tg2env/"
  13. before_script:
  14. - "psql -c 'create database tracim_test;' -U postgres"
  15. - "cd tracim && gearbox setup-app && cd -"
  16. # command to run tests
  17. script: nosetests --with-coverage --cover-package=tracim