forked from ramp-kits/meg
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
23 lines (23 loc) · 868 Bytes
/
.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
language: python
env:
- PYTHON_VERSION=3.8 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
- pip install -q flake8 nbconvert[test]
- pip install -r requirements.txt
script:
- flake8 *.py submissions/*/*.py --exclude plot_topomap.py
- python download_data.py
- ramp-test --quick-test
- ramp-test --submission lasso_lars --quick-test
- jupyter nbconvert --execute meg_starting_kit.ipynb --to html
--ExecutePreprocessor.kernel_name=$IPYTHON_KERNEL
notifications:
email: true