Skip to content

Commit ea3653a

Browse files
committed
turn off sanitizers in CI
1 parent e8cb595 commit ea3653a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -81,12 +81,12 @@ jobs:
8181
then
8282
rm -r build
8383
fi
84-
meson setup build -Db_sanitize=address,undefined
84+
meson setup build
8585
python -m build --no-isolation --wheel -Cbuilddir=build --config-setting='compile-args=-v' -Csetup-args="-Dbuildtype=debug"
8686
find ./dist/*.whl | xargs python -m pip install
8787
- name: Run stringdtype tests
8888
working-directory: stringdtype
8989
run: |
90-
ASAN_OPTIONS=detect_leaks=false LD_PRELOAD=/usr/lib/gcc/x86_64-linux-gnu/11/libasan.so pytest -s -vvv --color=yes
90+
pytest -s -vvv --color=yes
9191
pip uninstall -y pandas
92-
ASAN_OPTIONS=detect_leaks=false LD_PRELOAD=/usr/lib/gcc/x86_64-linux-gnu/11/libasan.so pytest -s -vvv --color=yes
92+
pytest -s -vvv --color=yes

0 commit comments

Comments
 (0)