Skip to content

Commit

Permalink
Merge branch 'experimental_C3_MRO' of https://github.com/zopefoundati…
Browse files Browse the repository at this point in the history
…on/ExtensionClass into experimental_C3_MRO
  • Loading branch information
d-maurer committed Jun 23, 2021
2 parents 53531a3 + 1dffee3 commit 5669e19
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 10 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -177,6 +177,8 @@ jobs:
needs: build-package
runs-on: ${{ matrix.os }}
strategy:
# We want to see all failures:
fail-fast: false
matrix:
python-version:
- 2.7
Expand All @@ -188,6 +190,7 @@ jobs:
- 3.8
- 3.9
os: [ubuntu-20.04, macos-latest]
c3: [0, 1]
exclude:
- os: macos-latest
python-version: pypy-2.7
Expand Down Expand Up @@ -239,9 +242,13 @@ jobs:
pip install -U -e .[test]
- name: Run tests with C extensions
if: ${{ !startsWith(matrix.python-version, 'pypy') }}
env:
EXTENSIONCLASS_C3_MRO: ${{ matrix.c3 }}
run: |
python -m coverage run -p -m zope.testrunner --test-path=src --auto-color --auto-progress
- name: Run tests without C extensions
env:
EXTENSIONCLASS_C3_MRO: ${{ matrix.c3 }}
run:
# coverage makes PyPy run about 3x slower!
PURE_PYTHON=1 python -m coverage run -p -m zope.testrunner --test-path=src --auto-color --auto-progress
Expand Down
10 changes: 0 additions & 10 deletions .meta.toml
Original file line number Diff line number Diff line change
Expand Up @@ -49,13 +49,3 @@ global-env-vars = [
build-script = [
"- python -W ignore setup.py -q bdist_wheel",
]

[github-actions]
additional-config = [
"- [\"2.7\", \"py27-c3\"]",
"- [\"3.5\", \"py35-c3\"]",
"- [\"3.6\", \"py36-c3\"]",
"- [\"3.7\", \"py37-c3\"]",
"- [\"3.8\", \"py38-c3\"]",
"- [\"3.9\", \"py39-c3\"]",
]

0 comments on commit 5669e19

Please sign in to comment.