Files
cmake-language-server/tox.ini
2019-11-16 03:26:14 +09:00

28 lines
488 B
INI

[tox]
isolated_build = True
skipsdist = True
envlist = py36, py37, py38, lint
[gh-actions]
python =
3.6: py36
3.7: py37, lint
3.8: py38
[testenv]
whitelist_externals = poetry
skip_install = true
commands_pre =
poetry install
commands =
poetry run pytest -sv tests
[testenv:lint]
whitelist_externals = poetry
skip_install = true
commands =
poetry run isort -c -rc src tests
poetry run yapf -d -r src tests
poetry run flake8
poetry run mypy src tests