You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the bug
When running integration tests, the udf tests require pandas to be installed whether thru conda env or otherwise to run without any errors. We should ideally ignore these tests of the user does not have pandas installed.
Steps/Code to reproduce bug
run mvn clean verify or ./run_pyspark_from_build.sh from integration-tests directory with SPARK_HOME set.
../../src/main/python/udf_cudf_test.py:15: in <module>
import pandas as pd
E ModuleNotFoundError: No module named 'pandas'
_________________ ERROR collecting src/main/python/udf_test.py _____________
Expected behavior
Integration tests that require pandas should not error out if pandas is not installed
The text was updated successfully, but these errors were encountered:
Describe the bug
When running integration tests, the udf tests require pandas to be installed whether thru conda env or otherwise to run without any errors. We should ideally ignore these tests of the user does not have pandas installed.
Steps/Code to reproduce bug
run
mvn clean verify
or./run_pyspark_from_build.sh
fromintegration-tests
directory with SPARK_HOME set.Expected behavior
Integration tests that require pandas should not error out if pandas is not installed
The text was updated successfully, but these errors were encountered: