diff options
author | Jason R. Coombs <jaraco@jaraco.com> | 2022-06-22 15:56:54 -0400 |
---|---|---|
committer | Jason R. Coombs <jaraco@jaraco.com> | 2022-06-22 15:56:54 -0400 |
commit | 2678a7e82d581c07691575d90cd255b64ee63a27 (patch) | |
tree | 1936a230abf87056a835ec1ac3147d84b8c8ddf1 | |
parent | 6dcd157a7057ec8e1f1f6afebe2115f55df4aaed (diff) | |
download | python-setuptools-git-2678a7e82d581c07691575d90cd255b64ee63a27.tar.gz |
Honor PEP 518 with pytest-enabler.
-rw-r--r-- | pyproject.toml | 8 | ||||
-rw-r--r-- | setup.cfg | 2 |
2 files changed, 5 insertions, 5 deletions
diff --git a/pyproject.toml b/pyproject.toml index 190b3551..60de2424 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -7,14 +7,14 @@ skip-string-normalization = true [tool.setuptools_scm] -[pytest.enabler.black] +[tool.pytest-enabler.black] addopts = "--black" -[pytest.enabler.mypy] +[tool.pytest-enabler.mypy] addopts = "--mypy" -[pytest.enabler.flake8] +[tool.pytest-enabler.flake8] addopts = "--flake8" -[pytest.enabler.cov] +[tool.pytest-enabler.cov] addopts = "--cov" @@ -38,7 +38,7 @@ testing = pytest-mypy >= 0.9.1; \ # workaround for jaraco/skeleton#22 python_implementation != "PyPy" - pytest-enabler >= 1.0.1 + pytest-enabler >= 1.3 # local |