Skip to content

Commit 02c7557

Browse files
committed
Fix tests
1 parent d3dfeb8 commit 02c7557

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

syncmaster/worker/spark.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ def get_packages(connection_types: set[str]) -> list[str]: # noqa: WPS212
5656
# excel version is hardcoded due to https://github.com/nightscape/spark-excel/issues/902
5757
file_formats_spark_packages: list[str] = [
5858
*XML.get_packages(spark_version=spark_version),
59-
*Excel.get_packages(spark_version="3.5.1"),
59+
*Excel.get_packages(package_version="0.31.2", spark_version="3.5.6"),
6060
]
6161

6262
result = []

tests/test_integration/test_run_transfer/connection_fixtures/spark_fixtures.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ def spark(settings: Settings, request: FixtureRequest) -> SparkSession:
7171
# excel version is hardcoded due to https://github.com/nightscape/spark-excel/issues/902
7272
file_formats_spark_packages: list[str] = [
7373
*XML.get_packages(spark_version=pyspark.__version__),
74-
*Excel.get_packages(spark_version="3.5.1"),
74+
*Excel.get_packages(package_version="0.31.2", spark_version="3.5.6"),
7575
]
7676
maven_packages.extend(file_formats_spark_packages)
7777

0 commit comments

Comments
 (0)