Skip to content

Commit bf1867d

Browse files
DEBUG adjust
1 parent 1dc938a commit bf1867d

File tree

1 file changed

+13
-4
lines changed

1 file changed

+13
-4
lines changed

.github/workflows/run_single_test.yml

Lines changed: 13 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,18 +5,27 @@ on:
55

66
jobs:
77
run-pytest:
8-
runs-on: ubuntu-latest
98
strategy:
109
matrix:
1110
cloud-provider: [aws, azure, gcp]
11+
os:
12+
- image: ubuntu-latest
13+
id: lububuntu
14+
- image: windows-latest
15+
id: windows
16+
- image: macos-latest
17+
id: macos
18+
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
19+
name: Custom pytest on ${{ matrix.os.id }}-py${{ matrix.python-version }}
20+
runs-on: ${{ matrix.os.image }}
1221
steps:
1322
- name: Checkout code
1423
uses: actions/checkout@v4
1524

1625
- name: Set up Python
1726
uses: actions/setup-python@v5
1827
with:
19-
python-version: '3.11'
28+
python-version: ${{ matrix.python-version }}
2029

2130
- name: Setup parameters file
2231
shell: bash
@@ -28,8 +37,8 @@ jobs:
2837
2938
- name: Install dependencies
3039
run: |
31-
python -m pip install ".[development,aio,secure-local-storage]"
40+
python -m pip install ".[development,aio,secure-local-storage,pandas]"
3241
3342
- name: Run pytest
3443
run: |
35-
pytest -vvv -k "file_permission" .
44+
pytest -vvv -k "overflow or down_scale" .

0 commit comments

Comments
 (0)