Skip to content

Update create testenv #2229

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 4 commits into from
May 28, 2017
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 12 additions & 8 deletions scripts/create_testenv.sh
Original file line number Diff line number Diff line change
Expand Up @@ -33,18 +33,22 @@ then
source activate ${ENVNAME}
fi
fi
conda install --yes numpy scipy mkl-service

pip install jupyter
conda install --yes matplotlib --channel conda-forge
conda install --yes numpy scipy pytest pytest-cov pandas patsy joblib mkl-service
pip install --upgrade pip

# Install editable using the setup.py
pip install -e .

# Install extra testing stuff
if [ ${PYTHON_VERSION} == "2.7" ]; then
conda install --yes mock enum34;
pip install mock
fi

pip install --upgrade pip
pip install --no-deps numdifftools
pip install git+https://github.com/Theano/Theano.git
pip install tqdm h5py nose-parameterized==0.6.0
pip install pytest pytest-cov nose-parameterized pylint

# Install untested, non-required code (linter fails without them)
pip install ipython ipywidgets numdifftools

if [ -z ${NO_SETUP} ]; then
python setup.py build_ext --inplace
Expand Down