Skip to content

Instantly share code, notes, and snippets.

@KenjiTakahashi
Forked from KelSolaar/.travis.yml
Created November 9, 2012 23:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save KenjiTakahashi/4049085 to your computer and use it in GitHub Desktop.
Save KenjiTakahashi/4049085 to your computer and use it in GitHub Desktop.
Travis - Setup file for PyQt and multiple Python interpreters.
language: python
python:
- "2.6"
- "2.7"
branches:
only:
- master
before_install:
- cd ..
- curl -L -O http://sourceforge.net/projects/pyqt/files/sip/sip-4.14.1/sip-4.14.1.tar.gz
- tar -xvf sip-4.14.1.tar.gz
- cd sip-4.14.1
- python configure.py
- make -j 2
- sudo make install
- cd ..
- curl -L -O http://sourceforge.net/projects/pyqt/files/PyQt4/PyQt-4.9.5/PyQt-x11-gpl-4.9.5.tar.gz
- tar -xvf PyQt-x11-gpl-4.9.5.tar.gz
- cd PyQt-x11-gpl-4.9.5
- python configure.py --confirm-license
- make -j 2
- sudo make install
- cd ../gayeogi
install:
- pip install mutagen
script: nosetests tests/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment