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 e9449e2 + a0cf0b2 commit 54ec4e1Copy full SHA for 54ec4e1
.github/workflows/ci.yml
@@ -67,9 +67,14 @@ jobs:
67
- name: Install stringdtype
68
working-directory: stringdtype
69
run: |
70
- python -m build --no-isolation --wheel -Cbuilddir=build
+ if [ -d "build/" ]
71
+ then
72
+ rm -r build
73
+ fi
74
+ meson setup build -Db_sanitize=address,undefined
75
+ python -m build --no-isolation --wheel -Cbuilddir=build --config-setting='compile-args=-v'
76
find ./dist/*.whl | xargs python -m pip install
77
- name: Run stringdtype tests
78
79
- pytest -vvv --color=yes
80
+ ASAN_OPTIONS=detect_leaks=false LD_PRELOAD=/usr/lib/gcc/x86_64-linux-gnu/11/libasan.so pytest -s -vvv --color=yes
0 commit comments