Skip to content

Commit a8db25f

Browse files
authored
Split test doesn't need to be executed per Python version (#130147)
1 parent 2dc81ed commit a8db25f

File tree

1 file changed

+4
-8
lines changed

1 file changed

+4
-8
lines changed

.github/workflows/ci.yaml

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -819,10 +819,6 @@ jobs:
819819
needs:
820820
- info
821821
- base
822-
strategy:
823-
fail-fast: false
824-
matrix:
825-
python-version: ${{ fromJson(needs.info.outputs.python_versions) }}
826822
name: Split tests for full run
827823
steps:
828824
- name: Install additional OS dependencies
@@ -836,11 +832,11 @@ jobs:
836832
libgammu-dev
837833
- name: Check out code from GitHub
838834
uses: actions/[email protected]
839-
- name: Set up Python ${{ matrix.python-version }}
835+
- name: Set up Python ${{ env.DEFAULT_PYTHON }}
840836
id: python
841837
uses: actions/[email protected]
842838
with:
843-
python-version: ${{ matrix.python-version }}
839+
python-version: ${{ env.DEFAULT_PYTHON }}
844840
check-latest: true
845841
- name: Restore base Python virtual environment
846842
id: cache-venv
@@ -858,7 +854,7 @@ jobs:
858854
- name: Upload pytest_buckets
859855
uses: actions/[email protected]
860856
with:
861-
name: pytest_buckets-${{ matrix.python-version }}
857+
name: pytest_buckets
862858
path: pytest_buckets.txt
863859
overwrite: true
864860

@@ -923,7 +919,7 @@ jobs:
923919
- name: Download pytest_buckets
924920
uses: actions/[email protected]
925921
with:
926-
name: pytest_buckets-${{ matrix.python-version }}
922+
name: pytest_buckets
927923
- name: Compile English translations
928924
run: |
929925
. venv/bin/activate

0 commit comments

Comments
 (0)