We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents ed5245b + 5577f40 commit 1327069Copy full SHA for 1327069
scripts/create_testenv.sh
@@ -4,9 +4,11 @@ set -e # fail on first error
4
5
PYTHON_VERSION=${PYTHON_VERSION:-3.5} # if no python specified, use 3.5
6
7
-conda create -n testenv --yes pip python=${PYTHON_VERSION}
8
-
9
-source activate testenv
+if [[ "$*" != *--global* ]]
+then
+ conda create -n testenv --yes pip python=${PYTHON_VERSION}
10
+ source activate testenv
11
+fi
12
13
conda install --yes pyqt=4.11.4 jupyter pyzmq numpy scipy nose matplotlib pandas Cython patsy statsmodels joblib coverage
14
if [ ${PYTHON_VERSION} == "2.7" ]; then
0 commit comments