-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
33 additions
and
15 deletions.
There are no files selected for viewing
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
#virtualenv: | ||
# system_site_packages: true | ||
language: python | ||
python: | ||
# - "2.7" | ||
# - "3.4" | ||
- "3.5" | ||
- "3.6" | ||
# command to install dependencies | ||
install: | ||
- pip install -r requirements_extended.txt | ||
- pip install coverage coveralls | ||
# - python setup.py install | ||
- export PYTHONPATH=$PYTHONPATH:`pwd` | ||
before_install: | ||
- sudo apt-get -qq update | ||
- sudo apt-get install -y plotutils libplot-dev python-dev libblas-dev liblapack-dev gfortran gnuplot | ||
# command to run tests | ||
script: | ||
coverage run biskit/test.py -e exe fails | ||
after_success: | ||
coveralls | ||
after_failure: | ||
coveralls |