Skip to content

Commit 407532d

Browse files
authored
Merge pull request Pylons#468 from luhn/fix-ci
Fix CI
2 parents 5a67a56 + 9338d12 commit 407532d

File tree

2 files changed

+2
-19
lines changed

2 files changed

+2
-19
lines changed

.github/workflows/ci-tests.yml

Lines changed: 1 addition & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -21,49 +21,33 @@ jobs:
2121
- "3.10"
2222
- "3.11"
2323
- "3.12"
24-
- "pypy-3.8"
2524
- "pypy-3.9"
2625
- "pypy-3.10"
2726
os:
2827
- "ubuntu-latest"
2928
- "windows-latest"
3029
- "macos-latest"
31-
architecture:
32-
- x64
33-
- x86
3430
include:
35-
- py: "pypy-3.8"
36-
toxenv: "pypy38"
3731
- py: "pypy-3.9"
3832
toxenv: "pypy39"
3933
- py: "pypy-3.10"
4034
toxenv: "pypy310"
4135
exclude:
42-
# Linux and macOS don't have x86 python
43-
- os: "ubuntu-latest"
44-
architecture: x86
45-
- os: "macos-latest"
46-
architecture: x86
4736
# Don't run all PyPy versions except latest on
4837
# Windows/macOS. They are expensive to run.
49-
- os: "windows-latest"
50-
py: "pypy-3.8"
51-
- os: "macos-latest"
52-
py: "pypy-3.8"
5338
- os: "windows-latest"
5439
py: "pypy-3.9"
5540
- os: "macos-latest"
5641
py: "pypy-3.9"
5742

58-
name: "Python: ${{ matrix.py }}-${{ matrix.architecture }} on ${{ matrix.os }}"
43+
name: "Python: ${{ matrix.py }} on ${{ matrix.os }}"
5944
runs-on: ${{ matrix.os }}
6045
steps:
6146
- uses: actions/checkout@v4
6247
- name: Setup python
6348
uses: actions/setup-python@v5
6449
with:
6550
python-version: ${{ matrix.py }}
66-
architecture: ${{ matrix.architecture }}
6751
- run: pip install tox
6852
- name: Running tox with specific toxenv
6953
if: ${{ matrix.toxenv != '' }}

tox.ini

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[tox]
22
envlist =
33
lint,
4-
py38,py39,py310,py311,py312,pypy38,pypy39,pypy310,
4+
py38,py39,py310,py311,py312,pypy39,pypy310,
55
coverage,
66
docs,
77
isolated_build = True
@@ -10,7 +10,6 @@ isolated_build = True
1010
commands =
1111
python --version
1212
python -m pytest \
13-
pypy38: --no-cov \
1413
pypy39: --no-cov \
1514
pypy310: --no-cov \
1615
{posargs:}

0 commit comments

Comments
 (0)