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.
1 parent 267837c commit bc4f673Copy full SHA for bc4f673
dev/run-pip-tests
@@ -54,6 +54,7 @@ if hash virtualenv 2>/dev/null && [ ! -n "$USE_CONDA" ]; then
54
elif hash conda 2>/dev/null; then
55
echo "Using conda virtual enviroments"
56
PYTHON_EXECS=('2.7.12' '3')
57
+ USE_CONDA=1
58
else
59
echo "Missing virtualenv & conda, skipping pip installability tests"
60
exit 0
@@ -72,6 +73,7 @@ PIP_OPTIONS="--upgrade --no-cache-dir --force-reinstall "
72
73
PIP_COMMANDS=("pip install $PIP_OPTIONS $PYSPARK_DIST"
74
"pip install $PIP_OPTIONS -e python/")
75
76
+set -x
77
for python in "${PYTHON_EXECS[@]}"; do
78
for install_command in "${PIP_COMMANDS[@]}"; do
79
echo "Testing pip installation with python $python"
0 commit comments