Skip to content

Commit

Permalink
Merge pull request #1538 from rmartin16/remove-winstore-ci-tests
Browse files Browse the repository at this point in the history
Remove Windows Store Python testing from CI
  • Loading branch information
freakboy3742 committed Nov 14, 2023
2 parents a0b3097 + f05fb4f commit b3059db
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 12 deletions.
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/checkout@v4.1.1
with:
fetch-depth: 0

- name: Set up Python
if: startswith(matrix.python-version, '3')
uses: actions/setup-python@v4.7.1
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/download-artifact@v3.0.2
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.

0 comments on commit b3059db

Please sign in to comment.