-
-
Notifications
You must be signed in to change notification settings - Fork 375
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1538 from rmartin16/remove-winstore-ci-tests
Remove Windows Store Python testing from CI
- Loading branch information
Showing
2 changed files
with
2 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -50,28 +50,17 @@ jobs: | |
# Allow dev Python to fail without failing entire job | ||
#- python-version: "3.13-dev" | ||
# experimental: true | ||
# Run tests against the latest Windows Store Python | ||
- platform: "windows" | ||
python-version: "winstore3.12" | ||
experimental: false | ||
steps: | ||
- name: Checkout | ||
uses: actions/[email protected] | ||
with: | ||
fetch-depth: 0 | ||
|
||
- name: Set up Python | ||
if: startswith(matrix.python-version, '3') | ||
uses: actions/[email protected] | ||
with: | ||
python-version: ${{ matrix.python-version }} | ||
|
||
- name: Install Windows Store Python | ||
if: startswith(matrix.python-version, 'winstore') | ||
uses: beeware/.github/.github/actions/install-win-store-python@main | ||
with: | ||
python-version: "3.12" | ||
|
||
- name: Get Packages | ||
uses: actions/[email protected] | ||
with: | ||
|
@@ -103,7 +92,7 @@ jobs: | |
id: coverage | ||
if: always() && contains('success,failure', steps.test.outcome) | ||
# coverage reporting must use the same Python version used to produce coverage | ||
run: tox -qe coverage$(echo '${{ matrix.python-version }}' | tr -dc '0-9') | ||
run: tox -qe coverage$(tr -dc "0-9" <<< "${{ matrix.python-version }}") | ||
|
||
coverage: | ||
name: Project coverage | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
Windows Store Python can no longer be tested in CI and has been removed. |