.travis.yml 393 B

123456789101112131415161718192021222324
  1. language: python
  2. sudo: false
  3. matrix:
  4. include:
  5. - os: linux
  6. python: 3.3
  7. - os: linux
  8. python: 3.4
  9. - os: linux
  10. python: 3.5
  11. - os: linux
  12. python: 3.6
  13. - os: osx
  14. language: generic
  15. before_install:
  16. - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew install python3; fi
  17. install:
  18. - pip3 install --upgrade -e .[test]
  19. script:
  20. - python3 setup.py test