Skip to content
This repository was archived by the owner on Nov 23, 2025. It is now read-only.

Commit 5e65633

Browse files
Copilotdavfive
andcommitted
Temporarily disable non-WSL tests to debug WSL issues
- Commented out Ubuntu, macOS, and Windows PowerShell/cmd tests - Only running Windows WSL bash tests for all Python versions - Disabled WSL cache (use-cache: false) to avoid corruption issues - All 31 tests passing locally (29% coverage) - Will re-enable other tests after WSL fixes are verified Co-authored-by: davfive <789595+davfive@users.noreply.github.com>
1 parent 4c0041a commit 5e65633

File tree

1 file changed

+45
-40
lines changed

1 file changed

+45
-40
lines changed

.github/workflows/python-tests.yml

Lines changed: 45 additions & 40 deletions
Original file line numberDiff line numberDiff line change
@@ -55,62 +55,66 @@ jobs:
5555
strategy:
5656
fail-fast: false
5757
matrix:
58-
os: [ubuntu-latest, macos-latest]
59-
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12', '3.13']
60-
shell: [default]
58+
# Temporarily disabled to debug WSL tests - will re-enable after fixing
59+
# os: [ubuntu-latest, macos-latest]
60+
# python-version: ['3.8', '3.9', '3.10', '3.11', '3.12', '3.13']
61+
# shell: [default]
62+
os: []
63+
python-version: []
64+
shell: []
6165
include:
62-
# Test Windows with PowerShell, cmd.exe, and WSL bash for all Python versions
63-
- os: windows-latest
64-
python-version: '3.8'
65-
shell: pwsh
66-
- os: windows-latest
67-
python-version: '3.8'
68-
shell: cmd
66+
# Test Windows WSL bash ONLY for debugging
67+
# - os: windows-latest
68+
# python-version: '3.8'
69+
# shell: pwsh
70+
# - os: windows-latest
71+
# python-version: '3.8'
72+
# shell: cmd
6973
- os: windows-latest
7074
python-version: '3.8'
7175
shell: wsl-bash
72-
- os: windows-latest
73-
python-version: '3.9'
74-
shell: pwsh
75-
- os: windows-latest
76-
python-version: '3.9'
77-
shell: cmd
76+
# - os: windows-latest
77+
# python-version: '3.9'
78+
# shell: pwsh
79+
# - os: windows-latest
80+
# python-version: '3.9'
81+
# shell: cmd
7882
- os: windows-latest
7983
python-version: '3.9'
8084
shell: wsl-bash
81-
- os: windows-latest
82-
python-version: '3.10'
83-
shell: pwsh
84-
- os: windows-latest
85-
python-version: '3.10'
86-
shell: cmd
85+
# - os: windows-latest
86+
# python-version: '3.10'
87+
# shell: pwsh
88+
# - os: windows-latest
89+
# python-version: '3.10'
90+
# shell: cmd
8791
- os: windows-latest
8892
python-version: '3.10'
8993
shell: wsl-bash
90-
- os: windows-latest
91-
python-version: '3.11'
92-
shell: pwsh
93-
- os: windows-latest
94-
python-version: '3.11'
95-
shell: cmd
94+
# - os: windows-latest
95+
# python-version: '3.11'
96+
# shell: pwsh
97+
# - os: windows-latest
98+
# python-version: '3.11'
99+
# shell: cmd
96100
- os: windows-latest
97101
python-version: '3.11'
98102
shell: wsl-bash
99-
- os: windows-latest
100-
python-version: '3.12'
101-
shell: pwsh
102-
- os: windows-latest
103-
python-version: '3.12'
104-
shell: cmd
103+
# - os: windows-latest
104+
# python-version: '3.12'
105+
# shell: pwsh
106+
# - os: windows-latest
107+
# python-version: '3.12'
108+
# shell: cmd
105109
- os: windows-latest
106110
python-version: '3.12'
107111
shell: wsl-bash
108-
- os: windows-latest
109-
python-version: '3.13'
110-
shell: pwsh
111-
- os: windows-latest
112-
python-version: '3.13'
113-
shell: cmd
112+
# - os: windows-latest
113+
# python-version: '3.13'
114+
# shell: pwsh
115+
# - os: windows-latest
116+
# python-version: '3.13'
117+
# shell: cmd
114118
- os: windows-latest
115119
python-version: '3.13'
116120
shell: wsl-bash
@@ -127,6 +131,7 @@ jobs:
127131
uses: Vampire/setup-wsl@v3
128132
with:
129133
distribution: Ubuntu-22.04
134+
use-cache: false # Disable cache to avoid corruption issues
130135

131136
- name: Set up Python ${{ matrix.python-version }} (WSL)
132137
if: matrix.shell == 'wsl-bash'

0 commit comments

Comments
 (0)