Files
PyGithub/tox.ini
T
Steve Kowalik 7a5421837c Add types libraries to lint deps (#1975)
It appears recently that typing information for jwt and requests has
been split out into seperate projects on pypi, namely types-jwt and
types-requests. Since we utilise calling functions in their namespace,
we need to install them otherwise mypy will fail.
2021-06-19 10:22:29 +10:00

47 lines
882 B
INI

[tox]
envlist =
lint,
py{36,37,38,39},
docs
[gh-actions]
python =
3.6: py36, docs, lint
3.7: py37
3.8: py38
3.9: py39
[testenv]
deps = -rtest-requirements.txt
commands = pytest --cov=github --cov-report=xml {posargs}
[testenv:lint]
basepython = python3.6
skip_install = true
deps =
types-jwt
types-requests
pre-commit
mypy
commands =
pre-commit run --all-files --show-diff-on-failure
; Run mypy outside pre-commit because pre-commit runs mypy in a venv
; that doesn't have dependencies or their type annotations installed.
mypy github tests
[testenv:docs]
basepython = python3.6
skip_install = true
deps = -rrequirements.txt
commands = sphinx-build doc build
[flake8]
max-line-length = 88
select = C,E,F,W
ignore = E266, E501, W503
[mypy]
python_version = 3.6
ignore_missing_imports = True
namespace_packages = True