Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 7 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,9 +67,14 @@ jobs:
- name: Install stringdtype
working-directory: stringdtype
run: |
python -m build --no-isolation --wheel -Cbuilddir=build
if [ -d "build/" ]
then
rm -r build
fi
meson setup build -Db_sanitize=address,undefined
python -m build --no-isolation --wheel -Cbuilddir=build --config-setting='compile-args=-v'
find ./dist/*.whl | xargs python -m pip install
- name: Run stringdtype tests
working-directory: stringdtype
run: |
pytest -vvv --color=yes
ASAN_OPTIONS=detect_leaks=false LD_PRELOAD=/usr/lib/gcc/x86_64-linux-gnu/11/libasan.so pytest -s -vvv --color=yes