Skip to content

Commit

Permalink
Merge pull request #546 from JuliaPy/allow-failure
Browse files Browse the repository at this point in the history
Don't fail CI on failing Windows 32-bit
  • Loading branch information
MilesCranmer authored Jan 1, 2024
2 parents 81af16e + 9184246 commit 71b81b6
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,8 @@ jobs:
run: python ci/install_pycall.py
- name: Run test
run: python -m tox -- --verbose --cov=julia
id: tox-tests
continue-on-error: ${{ matrix.julia-version == 'nightly' || (matrix.os == 'windows-latest' && matrix.architecture == 'x86') }}
env:
CI: 'true' # run tests marked by @only_in_ci
TOXENV: py
Expand All @@ -86,9 +88,13 @@ jobs:
if: always()
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v1
if: steps.tox-tests.outcome == 'success'
with:
file: ./coverage.xml
name: codecov-umbrella
- name: Report allowed failures
if: steps.tox-tests.outcome != 'success'
run: echo "Allowed failure for this configuration."

check:
runs-on: ubuntu-latest
Expand Down

0 comments on commit 71b81b6

Please sign in to comment.