.travis.yml 466B

123456789101112131415
  1. language: python
  2. python:
  3. - "3.4"
  4. install:
  5. - "pip install -r tests_requirements.txt"
  6. before_install:
  7. - git clone https://github.com/buxx/synergine.git
  8. - rm modules/*
  9. - ln -s ../synergine/modules/xyzworld modules/xyzworld
  10. - ln -s ../synergine/modules/xzworld modules/xyworld
  11. - ln -s ../synergine/synergine modules/synergine
  12. script:
  13. - coverage run tests.py --rcfile=.coveragerc -v && coverage report -m && python3.4 tests.py
  14. after_success:
  15. - coveralls