We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 91bb099 commit c07b212Copy full SHA for c07b212
1 file changed
.github/workflows/ci_doctests.yaml
@@ -84,12 +84,4 @@ jobs:
84
85
# Run the doctests
86
- name: Run doctests
87
- run: |
88
- log_file="${RUNNER_TEMP}/pytest.log"
89
- make doctest PYTEST_EXTRA="-r P" 2>&1 | tee "${log_file}"
90
- exit_code=${PIPESTATUS[0]}
91
- if [[ "${RUNNER_OS}" == "Windows" && "${exit_code}" -eq 2 ]] && grep -q "make: .* Error 2816" "${log_file}"; then
92
- echo "Doctests exited with make error 2816 (segmentation fault) on Windows; allowing workflow to continue."
93
- exit 0
94
- fi
95
- exit "${exit_code}"
+ run: make doctest PYTEST_EXTRA="-r P"
0 commit comments