Skip to content

Commit 4347f06

Browse files
sfc-gh-stakedaankit-bhatnagar167
authored andcommitted
SNOW-83333: skip arrow test for Python 3.4
1 parent ccba54f commit 4347f06

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

scripts/install.sh

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,9 @@ fi
3131

3232
source ./venv/bin/activate
3333
pip install numpy pendulum
34-
pip install pyarrow
34+
if [[ "$TRAVIS_PYTHON_VERSION" != "3.4" ]]; then
35+
pip install pyarrow
36+
fi
3537
pip install pytest pytest-cov pytest-rerunfailures
3638
if [[ "$TRAVIS_PYTHON_VERSION" == "2.7" ]] || [[ $PYTHON_VERSION == "2.7"* ]]; then
3739
pip install mock

0 commit comments

Comments
 (0)