forked from IanEisenberg/expfactory-analysis
-
Notifications
You must be signed in to change notification settings - Fork 0
/
circle.yml
25 lines (23 loc) · 1001 Bytes
/
circle.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
25
machine:
environment:
TEST_RUN_FOLDER: /tmp
test:
override:
- bash expanalysis/tests/run_tests.sh $PWD/expanalysis/tests $TEST_RUN_FOLDER
dependencies:
pre:
- echo "The Experiment Factory!"
- wget http://repo.continuum.io/miniconda/Miniconda-latest-Linux-x86_64.sh -O miniconda.sh
- chmod +x miniconda.sh
- ./miniconda.sh -b
- echo "export PATH=$HOME/miniconda2/bin:\\$PATH" >> $HOME/.bashrc
- echo "export PATH=$HOME/miniconda2/bin:\\$PATH" >> $HOME/.env
- source $HOME/.bashrc
- conda update --yes conda
- conda create --yes -n condaenv python=2.7
- conda install --yes -n condaenv pip
- source activate condaenv
- $HOME/miniconda2/bin/pip install setuptools
- $HOME/miniconda2/bin/conda install --yes pip numpy nose pandas numexpr scipy matplotlib
- $HOME/miniconda2/bin/pip install flask flask-restful gitpython selenium cognitiveatlas seaborn
- $HOME/miniconda2/bin/conda install --yes -c dan_blanchard python-coveralls