We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fb781e7 commit 1ca43b5Copy full SHA for 1ca43b5
1 file changed
.github/workflows/pytest-gpu.yml
@@ -105,7 +105,14 @@ jobs:
105
run: |
106
ci_env=$(bash <(curl -s https://codecov.io/env))
107
108
- docker run ${{ matrix.flags }} $ci_env -e CI=true "${DOCKER_IMAGE}" \
+ # docker run ${{ matrix.flags }} $ci_env -e CI=true "${DOCKER_IMAGE}" \
109
+ docker run ${{ matrix.flags }} $ci_env -e CI=true \
110
+ -e PYTHONFAULTHANDLER=1 \
111
+ -e CUDA_LAUNCH_BLOCKING=1 \
112
+ -e NV_ACC_NOTIFY=3 \
113
+ -e NV_ACC_DEBUG=1 \
114
+ -e DEVITO_LOGGING=DEBUG \
115
+ "${DOCKER_IMAGE}" \
116
pytest -vv -ra -l -s --full-trace --maxfail=1 \
117
--cov --cov-config=.coveragerc --cov-report=xml ${{ matrix.test_files }}
118
0 commit comments