Skip to content

Commit

Permalink
ci(pyspark): only run coverage on jobs that hit most of the test suite
Browse files Browse the repository at this point in the history
  • Loading branch information
cpcloud authored and gforsyth committed Oct 19, 2023
1 parent e7ce43e commit f53a523
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/ibis-backends.yml
Original file line number Diff line number Diff line change
Expand Up @@ -579,7 +579,8 @@ jobs:
run: git checkout poetry.lock pyproject.toml && ! git status --porcelain | tee /dev/stderr | grep .

- name: upload code coverage
if: success()
# only upload coverage for jobs that aren't mostly xfails
if: success() && matrix.python-version != '3.11' && matrix.pandas.version != '2.0.0'
uses: codecov/codecov-action@v3
with:
flags: backend,pyspark,${{ runner.os }},python-${{ steps.install_python.outputs.python-version }},pandas-${{ matrix.pandas.version }}
Expand Down

0 comments on commit f53a523

Please sign in to comment.