.travis.yml 672 B

12345678910111213141516171819202122232425262728293031
  1. sudo: required
  2. dist: trusty
  3. language: python
  4. python:
  5. - '2.7'
  6. - '3.4'
  7. - '3.5'
  8. install:
  9. - pip install --quiet -r ci/requirements.txt
  10. # - git clone https://github.com/"${TRAVIS_REPO_SLUG%%/*}"/qubes-builder ~/qubes-builder
  11. script:
  12. - pylint --rcfile=ci/pylintrc qubesmgmt
  13. - python -m unittest discover -p '*.py' -v
  14. # - ~/qubes-builder/scripts/travis-build
  15. #env:
  16. # - DIST_DOM0=fc23 USE_QUBES_REPO_VERSION=3.2 USE_QUBES_REPO_TESTING=1
  17. #after_success:
  18. # - ~/qubes-builder/scripts/travis-deploy
  19. # don't build tags which are meant for code signing only
  20. branches:
  21. except:
  22. - /.*_.*/
  23. addons:
  24. apt:
  25. packages:
  26. - debootstrap
  27. # vim: ts=2 sts=2 sw=2 et