.travis.yml 284 B

12345678910111213141516171819202122
  1. language: python
  2. python:
  3. - "2.6"
  4. - "2.7"
  5. - "3.2"
  6. - "3.3"
  7. - "3.4"
  8. - "pypy"
  9. install:
  10. - sudo apt-get install cmake
  11. # test script
  12. script:
  13. - ctest -VV --output-on-failure .
  14. # Notify the mailing list
  15. notifications:
  16. email:
  17. on_success: change
  18. on_failure: always