Skip to content

Commit cc9f371

Browse files
committed
Do not use tox for address sanitizer test
1 parent 640673b commit cc9f371

File tree

1 file changed

+9
-4
lines changed

1 file changed

+9
-4
lines changed

.github/workflows/address-sanitizer.yml

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,11 +27,16 @@ jobs:
2727
- name: Install dependencies
2828
run: |
2929
python -m pip install --upgrade pip
30-
pip install setuptools tox tox-gh-actions wheel
30+
pip install pytest setuptools wheel
3131
32-
- name: Test with tox
33-
run: tox
32+
- name: Install
33+
run: pip install .
3434
env:
35-
LD_PRELOAD: libasan.so.6
35+
CFLAGS: "-Werror -Wall -Wextra"
3636
MAXMINDDB_REQUIRE_EXTENSION: 1
37+
38+
- name: Test
39+
run: pytest
40+
env:
41+
LD_PRELOAD: libasan.so.6
3742
MM_FORCE_EXT_TESTS: 1

0 commit comments

Comments
 (0)