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.
1 parent 9504a53 commit 00a4b9fCopy full SHA for 00a4b9f
.github/workflows/asan.yml
@@ -83,6 +83,7 @@ jobs:
83
working-directory: quaddtype
84
run: |
85
# pass -s to pytest to see ASAN errors and warnings, otherwise pytest captures them
86
+ # Note: UBSAN halt_on_error=0 because NumPy has some UBSAN issues that would abort tests
87
ASAN_OPTIONS=detect_leaks=0:symbolize=1:strict_init_order=true:allocator_may_return_null=1 \
- UBSAN_OPTIONS=halt_on_error=1 \
88
+ UBSAN_OPTIONS=halt_on_error=0 \
89
pytest -vvv -s --color=yes --timeout=600 --durations=10
0 commit comments