Skip to content

Commit

Permalink
Tune pytest verbosity to a more suitable level
Browse files Browse the repository at this point in the history
  • Loading branch information
Kontinuation committed Nov 23, 2024
1 parent b627b90 commit 2d2f030
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand All @@ -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 }}
Expand All @@ -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

0 comments on commit 2d2f030

Please sign in to comment.