Skip to content

Commit a69b24f

Browse files
committed
WIP
1 parent d30dd15 commit a69b24f

File tree

1 file changed

+12
-6
lines changed

1 file changed

+12
-6
lines changed

.github/workflows/python-tests.yml

Lines changed: 12 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -21,15 +21,15 @@ jobs:
2121
fail-fast: false
2222
matrix:
2323
os:
24-
- "macos-latest"
25-
- "windows-latest"
24+
# - "macos-latest"
25+
# - "windows-latest"
2626
- "ubuntu-latest"
2727
python-version:
28-
- "3.9"
29-
- "3.10"
30-
- "3.11"
28+
# - "3.9"
29+
# - "3.10"
30+
# - "3.11"
3131
- "3.12"
32-
- "3.13"
32+
# - "3.13"
3333

3434
steps:
3535
- name: "Repo checkout"
@@ -49,12 +49,18 @@ jobs:
4949
run: |
5050
nox --session tests_with_coverage-${{ matrix.python-version }}
5151
52+
- name: "Debug"
53+
run: |
54+
pwd
55+
ls -a
56+
5257
- name: "Save coverage artifact"
5358
uses: "actions/upload-artifact@6f51ac03b9356f520e9adb1b1b7802705f340c2b"
5459
with:
5560
name: "coverage-artifact-${{ matrix.os}}-${{ matrix.python-version}}"
5661
path: ".coverage.*"
5762
retention-days: 1
63+
include-hidden-files: true
5864

5965
coverage-compile:
6066
name: "coverage compile"

0 commit comments

Comments
 (0)