From 7449f94a6f72ceff837b5a1dcac90d85dd539a81 Mon Sep 17 00:00:00 2001 From: Adam Ling Date: Tue, 10 Sep 2024 20:44:31 -0700 Subject: [PATCH] test pandas --- ci/test_darwin.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/ci/test_darwin.sh b/ci/test_darwin.sh index eeed2c2bd..8459ed87d 100755 --- a/ci/test_darwin.sh +++ b/ci/test_darwin.sh @@ -32,7 +32,9 @@ for PYTHON_VERSION in ${PYTHON_VERSIONS}; do CONNECTOR_WHL=$(ls ${CONNECTOR_DIR}/dist/snowflake_connector_python*cp${SHORT_VERSION}*.whl) TEST_ENVLIST=$(python3 -c "print('fix_lint,' + ','.join('py${SHORT_VERSION}-' + e + '-ci' for e in ['pandas']) + ',py${SHORT_VERSION}-coverage')") echo "[Info] Running tox for ${TEST_ENVLIST}" - python3.10 -m tox -e ${TEST_ENVLIST} --installpkg ${CONNECTOR_WHL} + python3.10 -m pip install pandas, pyarrow + python3.10 -c "import pandas" + # python3.10 -m tox -e ${TEST_ENVLIST} --installpkg ${CONNECTOR_WHL} done deactivate