forked from ramp-kits/mars_craters
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
24 lines (24 loc) · 1 KB
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
language: python
env:
- PYTHON_VERSION=2.7 IPYTHON_KERNEL=python2
- PYTHON_VERSION=3.6 IPYTHON_KERNEL=python3
before_install:
- wget -q http://repo.continuum.io/miniconda/Miniconda-3.6.0-Linux-x86_64.sh -O miniconda.sh
- chmod +x miniconda.sh
- ./miniconda.sh -b -p /home/travis/miniconda
- export PATH=/home/travis/miniconda/bin:$PATH
- conda update --yes --quiet conda
install:
- conda create -n testenv --yes pip python=$PYTHON_VERSION
- source activate testenv
- conda install --yes --quiet numpy scipy matplotlib scikit-learn pandas scikit-image joblib cloudpickle gitpython
- conda install --yes --quiet pytest pytest-cov
- pip install -q flake8
- pip install git+https://github.com/paris-saclay-cds/ramp-workflow.git@mars_craters
script:
- flake8 --ignore F812 *.py workflow/*.py submissions/*/*.py
- pytest --cov workflow
#- ramp_test_submission --quick-test
#- ramp_test_submission --submission image_processing --quick-test
notifications:
email: true