Skip to content

Commit

Permalink
Add tox lint target (#11602)
Browse files Browse the repository at this point in the history
Signed-off-by: Stephen Finucane <[email protected]>
  • Loading branch information
stephenfin authored Jul 6, 2024
1 parent 59e9553 commit 5ea16e7
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 5 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@ env:
FORCE_COLOR: "1"

jobs:
# If you update any of these commands, don't forget to update the equivalent
# tox environment
ruff:
runs-on: ubuntu-latest

Expand Down
21 changes: 16 additions & 5 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
[tox]
minversion = 2.4.0
minversion = 4.2.0
envlist = py{39,310,311,312,313}
isolated_build = True

[testenv]
usedevelop = True
Expand Down Expand Up @@ -29,8 +28,20 @@ setenv =
commands=
python -X dev -X warn_default_encoding -m pytest --durations 25 {posargs}

[testenv:lint]
description =
Run linters.
extras =
lint
# If you update any of these commands, don't forget to update the equivalent
# GitHub Workflow step
commands =
ruff . --diff --format github
flake8 .
isort --check-only --diff .
mypy sphinx/

[testenv:docs]
basepython = python3
description =
Build documentation.
extras =
Expand All @@ -40,7 +51,6 @@ commands =
sphinx-build -M {env:BUILDER:html} ./doc ./build/sphinx -nW --keep-going {posargs}

[testenv:docs-live]
basepython = python3
description =
Build documentation.
extras =
Expand Down Expand Up @@ -73,4 +83,5 @@ description =
extras =
lint
test
commands = mypy {posargs}
commands =
mypy {posargs}

0 comments on commit 5ea16e7

Please sign in to comment.