Skip to content

Commit

Permalink
Bump linters (#1966)
Browse files Browse the repository at this point in the history
  • Loading branch information
gaborbernat authored Oct 3, 2020
1 parent 368f830 commit 59277f0
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ repos:
hooks:
- id: pyupgrade
- repo: https://github.com/PyCQA/isort
rev: 5.5.3
rev: 5.5.4
hooks:
- id: isort
- repo: https://github.com/ambv/black
Expand All @@ -36,7 +36,7 @@ repos:
hooks:
- id: rst-backticks
- repo: https://github.com/tox-dev/tox-ini-fmt
rev: "8cbca0caa1e3ea4a7606e974da3966169c375988"
rev: "0.2.0"
hooks:
- id: tox-ini-fmt
- repo: https://github.com/asottile/setup-cfg-fmt
Expand All @@ -45,7 +45,7 @@ repos:
- id: setup-cfg-fmt
args: [--min-py3-version, "3.4"]
- repo: https://github.com/PyCQA/flake8
rev: "master"
rev: "3.8.4"
hooks:
- id: flake8
additional_dependencies: ["flake8-bugbear == 20.1.4"]
Expand Down
8 changes: 4 additions & 4 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,8 @@ extras =
commands =
python -m coverage erase
python -m coverage run -m pytest \
--junitxml {toxworkdir}/junit.{envname}.xml \
{posargs:tests --int --timeout 600 -n {env:PYTEST_XDIST:auto}}
--junitxml {toxworkdir}/junit.{envname}.xml \
{posargs:tests --int --timeout 600 -n {env:PYTEST_XDIST:auto}}
python -m coverage combine
python -m coverage report --skip-covered --show-missing
python -m coverage xml -o {toxworkdir}/coverage.{envname}.xml
Expand Down Expand Up @@ -71,6 +71,7 @@ deps =
coverage>=5.0.1
diff_cover>=3
extras =
parallel_show_output = true
commands =
python -m coverage combine
python -m coverage report --skip-covered --show-missing
Expand All @@ -86,7 +87,6 @@ depends =
py27
pypy
pypy3
parallel_show_output = True

[testenv:readme]
description = check that the long description is valid (need for PyPI)
Expand Down Expand Up @@ -135,6 +135,7 @@ changedir = {toxinidir}/tasks

[testenv:dev]
description = generate a DEV environment
usedevelop = true
deps =
setuptools_scm[toml]>=3.4
{[testenv:release]deps}
Expand All @@ -144,7 +145,6 @@ extras =
commands =
python -m pip list --format=columns
python -c 'import sys; print(sys.executable)'
usedevelop = True

[testenv:zipapp]
description = generate a zipapp
Expand Down

0 comments on commit 59277f0

Please sign in to comment.