Skip to content

Instantly share code, notes, and snippets.

@hugosenari
Forked from KelSolaar/.travis.yml
Last active December 21, 2015 15:59
Show Gist options
  • Save hugosenari/6330558 to your computer and use it in GitHub Desktop.
Save hugosenari/6330558 to your computer and use it in GitHub Desktop.
language: python
python:
- "2.6"
- "2.7"
before_install:
- cd ..
- curl -OL http://sourceforge.net/projects/pyqt/files/sip/sip-4.14.6/sip-4.14.6.tar.gz
- tar -xvf sip-4.14.6.tar.gz
- cd sip-4.14.6
- python configure.py
- make
- sudo make install
- cd ..
- curl -OL http://sourceforge.net/projects/pyqt/files/PyQt5/PyQt-5.0.1/PyQt-gpl-5.0.1.tar.gz
- tar -xvf PyQt-gpl-5.0.1.tar.gz
- cd PyQt-gpl-5.0.1
- python configure.py --confirm-license
- make
- sudo make install
- cd ../TravisRamblings
before_script:
- "export DISPLAY=:99.0"
- "sh -e /etc/init.d/xvfb start"
script: python test.py
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment