Skip to content

Commit d7d4609

Browse files
committed
remove matrix
1 parent 8768154 commit d7d4609

File tree

1 file changed

+3
-12
lines changed

1 file changed

+3
-12
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -174,15 +174,6 @@ jobs:
174174

175175
# ------------------------------------------ Integration Tests ------------------------------------------
176176
integration-tests:
177-
strategy:
178-
matrix:
179-
python-version:
180-
- "3.9"
181-
- "3.10"
182-
- "3.11"
183-
- "3.12"
184-
# Temporarily removed due to pendulum compatibility issues
185-
# - "3.13"
186177
if: |
187178
always() && !cancelled() &&
188179
!contains(needs.*.result, 'failure') &&
@@ -195,10 +186,10 @@ jobs:
195186
steps:
196187
- name: "Check out repository code"
197188
uses: "actions/checkout@v4"
198-
- name: Set up Python ${{ matrix.python-version }}
189+
- name: Set up Python
199190
uses: actions/setup-python@v5
200191
with:
201-
python-version: ${{ matrix.python-version }}
192+
python-version: "3.12"
202193
- name: "Setup environment"
203194
run: |
204195
pipx install poetry
@@ -210,6 +201,6 @@ jobs:
210201
run: "poetry run pytest --cov infrahub_sdk tests/integration/"
211202
- name: "Upload coverage to Codecov"
212203
run: |
213-
codecov --flags integration-tests-${{ matrix.python-version }}
204+
codecov --flags integration-tests
214205
env:
215206
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}

0 commit comments

Comments
 (0)