-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathcircle.yml
More file actions
24 lines (22 loc) · 976 Bytes
/
circle.yml
File metadata and controls
24 lines (22 loc) · 976 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
machine:
environment:
TEST_RUN_FOLDER: /tmp
test:
override:
- bash pybraincompare/testing/run_tests.sh $PWD/pybraincompare/testing $TEST_RUN_FOLDER
dependencies:
pre:
- echo "Pybraincompare!"
- wget http://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh -O miniconda.sh
- chmod +x miniconda.sh
- ./miniconda.sh -b
- echo "export PATH=$HOME/miniconda3/bin:\\$PATH" >> $HOME/.bashrc
- echo "export PATH=$HOME/miniconda3/bin:\\$PATH" >> $HOME/.env
- source $HOME/.bashrc
- conda update --yes conda
- conda create --yes -n condaenv python=3.6
- conda install --yes -n condaenv pip
- source activate condaenv
- $HOME/miniconda3/bin/pip install setuptools
- $HOME/miniconda3/bin/conda install --yes pip numpy scipy nose pandas cython scikit-learn scikit-image matplotlib h5py lxml numexpr future
- $HOME/miniconda3/bin/conda install --yes --no-update-dependencies -c conda-forge python-coveralls