Skip to content

Commit 2db9740

Browse files
committed
Verbosely test wheels on Unix, use release compile flags for aarch64 test
1 parent 4a9cee2 commit 2db9740

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
@@ -122,7 +122,7 @@ jobs:
122122
distro: none
123123
base_image: "--platform=linux/arm64 quay.io/pypa/manylinux2014_aarch64"
124124
run: |-
125-
python${{matrix.python_version}} -m pip install . pytest
125+
CFLAGS="-DNDEBUG -g0" python${{matrix.python_version}} -m pip install . pytest
126126
python${{matrix.python_version}} -m pytest tests
127127
128128
# Test if the python-isal conda package can be build. Which is linked
@@ -222,13 +222,13 @@ jobs:
222222
# Simple tests that requires the project to be build correctly
223223
# Skip extensive compatibility testing which is slow.
224224
CIBW_TEST_COMMAND_LINUX: >-
225-
pytest {project}/tests/test_igzip.py
225+
pytest -v {project}/tests/test_igzip.py
226226
{project}/tests/test_gzip_compliance.py
227227
{project}/tests/test_zlib_compliance.py
228228
{project}/tests/test_igzip_lib.py
229229
-k 'not test_compress_decompress'
230230
CIBW_TEST_COMMAND_MACOS: >-
231-
pytest {project}/tests/test_igzip.py
231+
pytest -v {project}/tests/test_igzip.py
232232
{project}/tests/test_gzip_compliance.py
233233
{project}/tests/test_zlib_compliance.py
234234
{project}/tests/test_igzip_lib.py

0 commit comments

Comments
 (0)