mirror of
https://github.com/wassname/simpeg.git
synced 2026-08-08 11:26:56 +08:00
17 lines
469 B
YAML
17 lines
469 B
YAML
language: python
|
|
python:
|
|
- "2.7"
|
|
virtualenv:
|
|
system_site_packages: true
|
|
before_install:
|
|
- sudo apt-get install -qq gcc gfortran libblas-dev liblapack-dev python-numpy python-scipy python-matplotlib python-pip
|
|
- sudo pip install scipy --upgrade
|
|
- sudo pip install numpy --upgrade
|
|
- cd SimPEG
|
|
- python setup.py
|
|
- cd ../
|
|
# command to install dependencies
|
|
install: "pip install -r requirements.txt --use-mirrors"
|
|
# command to run tests
|
|
script: nosetests -v
|