File tree Expand file tree Collapse file tree 2 files changed +4
-3
lines changed
Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ testpaths = ["tests"]
2424[tool .cibuildwheel ]
2525build-verbosity = 3
2626test-requires = " pytest" # mypy numpy imageio
27- test-command = " pytest -s {project}/python/tests"
27+ test-command = " pytest -s {project}/python/tests -vvv "
2828manylinux-i686-image = " manylinux_2_28"
2929manylinux-x86_64-image = " manylinux_2_28"
3030manylinux-aarch64-image = " manylinux_2_28"
@@ -38,7 +38,7 @@ before-build = [
3838]
3939
4040test-command = [
41- " xvfb-run -a -s \" -screen 0 1024x768x24\" pytest -s {project}/python/tests"
41+ " xvfb-run -a -s \" -screen 0 1024x768x24\" pytest -s {project}/python/tests -vvv "
4242# """xvfb-run -a -s \"-screen 0 1024x768x24\" pytest -s {project}/python/tests || \
4343# { (mkdir -p /output/compare_data && cp {project}/python/tests/compare_data/* /output/compare_data/) ; exit 1 ; }"""
4444]
Original file line number Diff line number Diff line change 11import pytest
2+ import sys
23
34from .. import common
45
56import yup
67
7- if not hasattr (yup , "MessageManager" ) or not hasattr (yup , "YUPApplication" ):
8+ if sys . platform != "darwin" or not hasattr (yup , "MessageManager" ) or not hasattr (yup , "YUPApplication" ):
89 pytest .skip (allow_module_level = True )
You can’t perform that action at this time.
0 commit comments