Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
31 changes: 28 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,35 @@ language: python
python:
- 2.7

install:
pip install --user -r requirements.txt
os: linux
distro: xenial

branches:
only:
- master

virtualenv:
system_site_packages: true

before_script:
- cd ..
- curl -L -O http://sourceforge.net/projects/pyqt/files/sip/sip-4.14.1/sip-4.14.1.tar.gz
- ls
- tar -xvzf 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 -xvzf 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 ../equations
- sudo pip install pytest-qt
script:
- pytest
- pytest --verbose


1 change: 0 additions & 1 deletion requirements.txt

This file was deleted.