Skip to content

Commit

Permalink
removed anaconda requirement for venv during jenkins test
Browse files Browse the repository at this point in the history
  • Loading branch information
akmorrow13 authored and heuermh committed Jan 4, 2019
1 parent a8bbc72 commit 003217b
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions scripts/jenkins-test
Original file line number Diff line number Diff line change
Expand Up @@ -195,9 +195,13 @@ then
for python in ${pythons[*]}
do
uuid=$(uuidgen)
conda create -q -n adam-build-${uuid} python=${python} anaconda
source activate adam-build-${uuid}

conda create -q -n adam-build-${uuid} python=${python}
source activate adam-build-${uuid}

# prepare adam python
pushd adam-python
make prepare
popd

# we only support SparkR on Spark 2.x
if [ ${SPARK_VERSION} == 2.2.2 ];
Expand Down

0 comments on commit 003217b

Please sign in to comment.