Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove Windows Store Python testing from CI #1538

Merged
merged 2 commits into from
Nov 14, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 1 addition & 12 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down Expand Up @@ -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
Expand Down
1 change: 1 addition & 0 deletions changes/1538.misc.rst
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.