You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
445 B
INI
21 lines
445 B
INI
[tox]
|
|
isolated_buid = true
|
|
envlist = py39, lint
|
|
skip_missing_interpreters = True
|
|
|
|
[testenv]
|
|
whitelist_externals = poetry
|
|
commands =
|
|
poetry install -v
|
|
poetry run python -m unittest
|
|
|
|
[testenv:lint]
|
|
deps = flake8
|
|
mypy
|
|
isort
|
|
commands =
|
|
poetry install -v
|
|
poetry run flake8 automatic_diary
|
|
poetry run mypy automatic_diary --ignore-missing-imports
|
|
poetry run isort -c automatic_diary
|