From 2d2f030096d35281e8323f1899d84f076cfcafe7 Mon Sep 17 00:00:00 2001 From: Kristin Cowalcijk Date: Sat, 23 Nov 2024 15:16:50 +0800 Subject: [PATCH] Tune pytest verbosity to a more suitable level --- .github/workflows/python.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/python.yml b/.github/workflows/python.yml index fbe0d0e924..aaca28df05 100644 --- a/.github/workflows/python.yml +++ b/.github/workflows/python.yml @@ -150,7 +150,7 @@ jobs: export SPARK_HOME=${VENV_PATH}/lib/python${PYTHON_VERSION}/site-packages/pyspark cd python source ${VENV_PATH}/bin/activate - pytest -sv tests + pytest -v tests - name: Run basic tests without rasterio env: PYTHON_VERSION: ${{ matrix.python }} @@ -159,7 +159,7 @@ jobs: cd python source ${VENV_PATH}/bin/activate pip uninstall -y rasterio - pytest -sv tests/core/test_rdd.py tests/sql/test_dataframe_api.py + pytest -v tests/core/test_rdd.py tests/sql/test_dataframe_api.py - name: Run Spark Connect tests env: PYTHON_VERSION: ${{ matrix.python }} @@ -176,4 +176,4 @@ jobs: cd python source ${VENV_PATH}/bin/activate pip install "pyspark[connect]==${SPARK_VERSION}" - pytest tests/sql/test_dataframe_api.py + pytest -v tests/sql/test_dataframe_api.py