Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Travis fixes to build error. #20

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
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
12 changes: 5 additions & 7 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,17 +7,15 @@ notifications:


install:
- wget http://download.opensuse.org/repositories/home:moose/xUbuntu_14.04/Release.key
- sudo apt-key add - < Release.key
- sudo sh -c "echo 'deb http://download.opensuse.org/repositories/home:/moose/xUbuntu_14.04/ /' >> /etc/apt/sources.list.d/moose.list"
- sudo apt-get -y update
- sudo apt-get -y --force-yes install python3 python-pip
- sudo apt-get -y --force-yes install moose
- sudo -H pip install python-libsbml
- sudo apt-get -y --force-yes install python3 python-pip python3-pip
- sudo -H pip install python-libsbml
- sudo -H pip install pymoose --pre

script:
- # Making sure no python incompatible file is added.
- python -m compileall -q .
- python3 -m compileall -q . || echo "Python3 is allowed to fail"
- python -c 'import moose'
- #python -c 'import moogli'
- # More tests here for gui.
- echo "There are not tests for gui"