We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 81af16e + 9184246 commit 71b81b6Copy full SHA for 71b81b6
.github/workflows/main.yml
@@ -78,6 +78,8 @@ jobs:
78
run: python ci/install_pycall.py
79
- name: Run test
80
run: python -m tox -- --verbose --cov=julia
81
+ id: tox-tests
82
+ continue-on-error: ${{ matrix.julia-version == 'nightly' || (matrix.os == 'windows-latest' && matrix.architecture == 'x86') }}
83
env:
84
CI: 'true' # run tests marked by @only_in_ci
85
TOXENV: py
@@ -86,9 +88,13 @@ jobs:
86
88
if: always()
87
89
- name: Upload coverage to Codecov
90
uses: codecov/codecov-action@v1
91
+ if: steps.tox-tests.outcome == 'success'
92
with:
93
file: ./coverage.xml
94
name: codecov-umbrella
95
+ - name: Report allowed failures
96
+ if: steps.tox-tests.outcome != 'success'
97
+ run: echo "Allowed failure for this configuration."
98
99
check:
100
runs-on: ubuntu-latest
0 commit comments