Skip to content

Commit ac5bf44

Browse files
authored
Restore Pyside6 tests (#68)
1 parent f6373da commit ac5bf44

File tree

2 files changed

+3
-5
lines changed

2 files changed

+3
-5
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,4 @@ jobs:
3939
fail-fast: false
4040
matrix:
4141
python-version: [ "3.9", "3.10", "3.11", "3.12", "3.13" ]
42-
# PySide6 produce very long paths that can't be packaged by WiX.
43-
# Disabling until the problem has been fixed. See beeware/briefcase#948
44-
# framework: [ "toga", "pyside6", "pygame", "console" ]
45-
framework: [ "toga", "pygame", "console" ]
42+
framework: [ "toga", "pyside6", "pygame", "console" ]

{{ cookiecutter.format }}/{{ cookiecutter.app_name }}.wxs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,9 +43,10 @@
4343
</StandardDirectory>
4444

4545
<ComponentGroup Id="{{ cookiecutter.module_name }}_COMPONENTS">
46+
<!-- "\\?\" enables long paths (https://github.com/wixtoolset/issues/issues/9115). -->
4647
<Files
4748
Directory="INSTALLFOLDER"
48-
Include="{{ cookiecutter.package_path }}\**" />
49+
Include="\\?\{{ cookiecutter.package_path }}\**" />
4950
</ComponentGroup>
5051

5152
<StandardDirectory Id="ProgramMenuFolder">

0 commit comments

Comments
 (0)