-
-
Save hugosenari/6330558 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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