.travis.yml 572 B

12345678910111213141516171819202122
  1. sudo: required
  2. dist: trusty
  3. language: generic
  4. before_install:
  5. - sudo -H apt-get install -qq -y libpython2.7-dev
  6. - sudo -H apt-get install -qq -y python-minimal
  7. - sudo -H apt-get install -qq -y python-tk
  8. install:
  9. - sudo -H apt-get install -qq -y pyqt4-dev-tools
  10. - sudo -H apt-get install -qq -y python-qt4
  11. - sudo -H pip install -U pip setuptools
  12. # scikit-image needs numpy and to be installed by pip
  13. - sudo -H pip install numpy scikit-image
  14. - sudo -H python setup.py install
  15. script:
  16. - sudo -H apt-get install -qq -y python-nose
  17. - nosetests tests