Skip to content

Commit

Permalink
Disable pytest-black and pytest-mypy on PyPy. Fixes jaraco/skeleton#22.…
Browse files Browse the repository at this point in the history
  • Loading branch information
jaraco committed Sep 4, 2020
1 parent 0ea3efd commit 4afa4a9
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 2 deletions.
8 changes: 8 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,11 @@ build-backend = "setuptools.build_meta"
skip-string-normalization = true

[tool.setuptools_scm]

# jaraco/skeleton#22
[tool.jaraco.pytest.opts.--black]
action = "store_true"

# jaraco/skeleton#22
[tool.jaraco.pytest.opts.--mypy]
action = "store_true"
6 changes: 4 additions & 2 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,11 @@ testing =
pytest >= 3.5, !=3.7.3
pytest-checkdocs >= 1.2.3
pytest-flake8
pytest-black >= 0.3.7
pytest-black >= 0.3.7; python_implementation != "PyPy"
pytest-cov
pytest-mypy
pytest-mypy; python_implementation != "PyPy"
# jaraco/skeleton#22
jaraco.test >= 3

# local

Expand Down

0 comments on commit 4afa4a9

Please sign in to comment.