Skip to content

Commit

Permalink
Rename testenvs to all follow similar naming style
Browse files Browse the repository at this point in the history
  • Loading branch information
AWhetter committed Aug 29, 2024
1 parent 570a594 commit eee9d91
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 6 deletions.
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ You can check your formatting using black's check mode:

.. code-block:: bash
tox -e formatting
tox -e format
You can also get black to format your changes for you:

Expand Down
1 change: 1 addition & 0 deletions docs/changes/+9b32031d.misc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Rename testenvs to all follow similar naming style
10 changes: 5 additions & 5 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@ isolated_build = true
envlist =
# Keep this in sync with .github/workflows/main.yml
py{38,39,310,311,312,313}
formatting
format
typecheck
lint
docs
doc
release_notes

[gh-actions]
Expand All @@ -15,7 +15,7 @@ python =
3.9: py39
3.10: py310
3.11: py311
3.12: py312, formatting, typecheck, lint, docs, release_notes
3.12: py312, format, typecheck, lint, doc, release_notes
3.13: py313

[testenv]
Expand All @@ -26,7 +26,7 @@ deps =
commands =
pytest {posargs}

[testenv:formatting]
[testenv:format]
skip_install = true
deps =
black
Expand All @@ -48,7 +48,7 @@ deps =
commands =
mypy {posargs:autoapi}

[testenv:docs]
[testenv:doc]
extras =
docs
deps =
Expand Down

0 comments on commit eee9d91

Please sign in to comment.