Allow warning for pyspark

This commit is contained in:
Ayaz Salikhov
2022-01-22 13:18:20 +02:00
parent ef25c31f18
commit 968a9aedde

View File

@@ -11,6 +11,7 @@ LOGGER = logging.getLogger(__name__)
def test_spark_shell(container: TrackedContainer) -> None: def test_spark_shell(container: TrackedContainer) -> None:
"""Checking if Spark (spark-shell) is running properly""" """Checking if Spark (spark-shell) is running properly"""
logs = container.run_and_wait( logs = container.run_and_wait(
no_warnings=False, # WARNING: An illegal reflective access operation has occurred
timeout=60, timeout=60,
tty=True, tty=True,
command=["start.sh", "bash", "-c", 'spark-shell <<< "1+1"'], command=["start.sh", "bash", "-c", 'spark-shell <<< "1+1"'],