File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -203,7 +203,7 @@ jobs:
203
203
204
204
pushd ./cuda_bindings
205
205
pip install -r requirements.txt
206
- pytest -rxXs -v tests/
206
+ ${SANITIZER_CMD} pytest -rxXs -v tests/
207
207
208
208
# It is a bit convoluted to run the Cython tests against CTK wheels,
209
209
# so let's just skip them.
@@ -214,7 +214,7 @@ jobs:
214
214
# TODO: enable this once win-64 runners are up
215
215
exit 1
216
216
fi
217
- pytest -rxXs -v tests/cython
217
+ ${SANITIZER_CMD} pytest -rxXs -v tests/cython
218
218
fi
219
219
popd
220
220
@@ -238,7 +238,7 @@ jobs:
238
238
239
239
pushd ./cuda_core
240
240
pip install -r "tests/requirements-cu${TEST_CUDA_MAJOR}.txt"
241
- pytest -rxXs -v tests/
241
+ ${SANITIZER_CMD} pytest -rxXs -v tests/
242
242
243
243
# It is a bit convoluted to run the Cython tests against CTK wheels,
244
244
# so let's just skip them. Also, currently our CI always installs the
@@ -252,7 +252,7 @@ jobs:
252
252
# TODO: enable this once win-64 runners are up
253
253
exit 1
254
254
fi
255
- pytest -rxXs -v tests/cython
255
+ ${SANITIZER_CMD} pytest -rxXs -v tests/cython
256
256
fi
257
257
popd
258
258
You can’t perform that action at this time.
0 commit comments