forked from sublimelsp/LSP
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tox.ini
31 lines (27 loc) · 759 Bytes
/
tox.ini
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
# Tox (http://tox.testrun.org/) is a tool for running tests
# in multiple virtualenvs. This configuration file will run the
# test suite on all supported python versions. To use it, "pip install tox"
# and then run "tox" from this directory.
[tox]
envlist = py3
skipsdist = True
[pycodestyle]
exclude = third_party
max-line-length = 120
[flake8]
exclude = third_party
max-line-length = 120
per-file-ignores =
# line-length
plugin/core/protocol.py:E501
[testenv]
deps =
mypy==1.7.1
flake8==5.0.4
pyright==1.1.381
orjson==3.10.7
commands =
# mypy disabled for main code as it doesn't currently support cyclic definitions - https://github.com/python/mypy/issues/731
mypy stubs
flake8 plugin tests
pyright plugin stubs