24 lines
455 B
INI
24 lines
455 B
INI
[tox]
|
|
envlist =
|
|
py39
|
|
format
|
|
isolated_build = true
|
|
|
|
[testenv:format]
|
|
description = Linting and checking syntax
|
|
require_locked_deps = true
|
|
install_dev_deps = true
|
|
commands =
|
|
poetry run isort app\
|
|
poetry run black app\
|
|
poetry run flake8 app\
|
|
poetry run pylint app
|
|
|
|
[testenv:test]
|
|
description = Linting and checking syntax
|
|
require_locked_deps = true
|
|
install_dev_deps = true
|
|
commands =
|
|
poetry run pytest -v
|
|
|