mirror of
https://github.com/Hopiu/cookiecutter-django.git
synced 2026-05-26 12:44:00 +00:00
* Fix inconsistent line length and move config to pyproject.toml Fix #2720 * Fix running tox with AUTOFIXABLE_STYLES * Adjust some styles * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * Adjust more styles * Split isort and flake8 tests --------- Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
12 lines
254 B
INI
12 lines
254 B
INI
[tox]
|
|
skipsdist = true
|
|
envlist = py311,black-template
|
|
|
|
[testenv]
|
|
deps = -rrequirements.txt
|
|
passenv = AUTOFIXABLE_STYLES
|
|
commands = pytest {posargs:./tests}
|
|
|
|
[testenv:black-template]
|
|
deps = black
|
|
commands = black --check hooks tests setup.py docs scripts
|