Created
June 14, 2022 16:38
-
-
Save mhihasan/b0b98b9fb065266c4cbfaa1a381e5f53 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[tox] | |
envlist = lint,py3{6,8,9} | |
skip_missing_interpreters = true | |
[testenv] | |
deps = | |
-r requirements/test.txt | |
py36: -r requirements/py36.txt | |
commands = | |
pytest {posargs:tests} | |
[testenv:lint] | |
deps = | |
-r requirements/lint.txt | |
commands = | |
flake8 src/ tests/ | |
black --check --diff src/ tests/ | |
mypy src/ tests/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment