diff options
Diffstat (limited to 'testing/wheel_tester.py')
-rw-r--r-- | testing/wheel_tester.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/testing/wheel_tester.py b/testing/wheel_tester.py index 160ef7d37..8fd43cd5b 100644 --- a/testing/wheel_tester.py +++ b/testing/wheel_tester.py @@ -335,7 +335,9 @@ def try_build_examples(): from PySide6 import __all__ as modules for modname in modules: - execute_script(src_path / f"{modname}.pyi") + # PYSIDE-1735: pyi files are no longer compatible with Python. + # XXX Maybe add a test with Mypy here? + pass # execute_script(src_path / f"{modname}.pyi") def run_wheel_tests(install_wheels, wheels_dir_name): |