Skip to content

Commit fb948ed

Browse files
committed
Don't test on PyPy as it is causing problems with the coverage.
1 parent 0addf5e commit fb948ed

File tree

6 files changed

+5
-29
lines changed

6 files changed

+5
-29
lines changed

.github/workflows/python_ci_linux.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
runs-on: "ubuntu-20.04"
1414
continue-on-error: ${{ matrix.config.experimental }}
1515
env:
16-
USING_COVERAGE: '3.6,3.7,3.8,3.9,3.10.0-alpha.4,pypy-3.6'
16+
USING_COVERAGE: '3.6,3.7,3.8,3.9,3.10.0-alpha.4'
1717

1818
strategy:
1919
fail-fast: False
@@ -24,7 +24,6 @@ jobs:
2424
- {python-version: "3.8", testenvs: "py38,build", experimental: False}
2525
- {python-version: "3.9", testenvs: "py39,build", experimental: False}
2626
- {python-version: "3.10.0-alpha.4", testenvs: "py310-dev,build", experimental: True}
27-
- {python-version: "pypy-3.6", testenvs: "pypy3,build", experimental: False}
2827

2928
steps:
3029
- name: Checkout 🛎️

.github/workflows/python_ci_macos.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
runs-on: "macos-latest"
1414
continue-on-error: ${{ matrix.config.experimental }}
1515
env:
16-
USING_COVERAGE: '3.6,3.7,3.8,3.9,3.10.0-alpha.4,pypy-3.6'
16+
USING_COVERAGE: '3.6,3.7,3.8,3.9,3.10.0-alpha.4'
1717

1818
strategy:
1919
fail-fast: False
@@ -24,7 +24,6 @@ jobs:
2424
- {python-version: "3.8", testenvs: "py38,build", experimental: False}
2525
- {python-version: "3.9", testenvs: "py39,build", experimental: False}
2626
- {python-version: "3.10.0-alpha.4", testenvs: "py310-dev,build", experimental: True}
27-
- {python-version: "pypy-3.6", testenvs: "pypy3,build", experimental: False}
2827

2928
steps:
3029
- name: Checkout 🛎️

flake8_sphinx_links/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -204,7 +204,7 @@ def _check_docstring(self, node: Union[ast.ClassDef, ast.FunctionDef, ast.Module
204204

205205
if (
206206
sys.version_info < (3, 8) and platform.python_implementation() != "PyPy"
207-
): # pragma: no cover (PY38+) # pragma: no cover (!CPython)
207+
): # pragma: no cover (PY38+)
208208
doc_end_lineno = node.body[0].value.lineno # type: ignore
209209

210210
# Calculate the start line

repo_helper.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,6 @@ python_versions:
2222
- "3.8"
2323
- '3.9'
2424
- "3.10-dev"
25-
- "pypy3"
26-
27-
# travis secure password for PyPI
2825

2926
classifiers:
3027
- 'Development Status :: 4 - Beta'

setup.cfg

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,6 @@ classifiers =
3333
Programming Language :: Python :: 3.8
3434
Programming Language :: Python :: 3.9
3535
Programming Language :: Python :: Implementation :: CPython
36-
Programming Language :: Python :: Implementation :: PyPy
3736
Topic :: Utilities
3837
Typing :: Typed
3938

tox.ini

Lines changed: 2 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -16,15 +16,15 @@
1616
# * pytest
1717

1818
[tox]
19-
envlist = py36, py37, py38, py39, py310-dev, pypy3, mypy, build
19+
envlist = py36, py37, py38, py39, py310-dev, mypy, build
2020
skip_missing_interpreters = True
2121
requires =
2222
pip>=20.3.3
2323
tox-envlist>=0.1.0
2424
isolated_build = True
2525

2626
[envlists]
27-
test = py36, py37, py38, py39, py310-dev, pypy3
27+
test = py36, py37, py38, py39, py310-dev
2828
qa = mypy, lint
2929
cov = py36, coverage
3030

@@ -151,23 +151,5 @@ package = flake8_sphinx_links
151151
addopts = --color yes --durations 25
152152
timeout = 300
153153
154-
[gh-actions]
155-
python =
156-
3.6: py36, build, mypy
157-
3.7: py37, build
158-
3.8: py38, build
159-
3.9: py39, build
160-
3.10-dev: py310-dev, build
161-
pypy3: pypy3, build
162-
163-
[travis]
164-
python =
165-
3.6: py36, build, mypy
166-
3.7: py37, build
167-
3.8: py38, build
168-
3.9: py39, build
169-
3.10-dev: py310-dev, build
170-
pypy3: pypy3, build
171-
172154
[dep_checker]
173155
allowed_unused = flake8

0 commit comments

Comments
 (0)