-
-
Notifications
You must be signed in to change notification settings - Fork 918
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1667 from EliahKagan/tox
Configure tox
- Loading branch information
Showing
3 changed files
with
35 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -25,4 +25,3 @@ nbproject | |
.pytest_cache/ | ||
monkeytype.sqlite3 | ||
output.txt | ||
tox.ini |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,6 +7,3 @@ flake8-type-checking;python_version>="3.8" # checks for TYPE_CHECKING only | |
|
||
pytest-icdiff | ||
# pytest-profiling | ||
|
||
|
||
tox |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
[tox] | ||
requires = tox>=4 | ||
env_list = py{37,38,39,310,311,312}, lint, mypy, black | ||
|
||
[testenv] | ||
description = Run unit tests | ||
package = wheel | ||
extras = test | ||
pass_env = SSH_* | ||
commands = pytest --color=yes {posargs} | ||
|
||
[testenv:lint] | ||
description = Lint via pre-commit | ||
base_python = py39 | ||
commands = pre-commit run --all-files | ||
|
||
[testenv:mypy] | ||
description = Typecheck with mypy | ||
base_python = py39 | ||
commands = mypy -p git | ||
ignore_outcome = true | ||
|
||
[testenv:black] | ||
description = Check style with black | ||
base_python = py39 | ||
commands = black --check --diff git | ||
|
||
# Run "tox -e html" for this. It is deliberately excluded from env_list, as | ||
# unlike the other environments, this one writes outside the .tox/ directory. | ||
[testenv:html] | ||
description = Build HTML documentation | ||
base_python = py39 | ||
deps = -r doc/requirements.txt | ||
allowlist_externals = make | ||
commands = make -C doc html |