diff options
| author | Giel van Schijndel <giel@mortis.eu> | 2021-04-23 11:18:22 +0200 |
|---|---|---|
| committer | Giel van Schijndel <giel@mortis.eu> | 2021-04-23 15:23:11 +0200 |
| commit | 4f9d492e479eda07c5bbe838319eecac459a6042 (patch) | |
| tree | d187fd60b5ae08ff786bcd1fbccb8a9f77256cdc | |
| parent | 70aa1ab69c84ac712d91c92b36a5ed7045cc647c (diff) | |
| download | gitpython-4f9d492e479eda07c5bbe838319eecac459a6042.tar.gz | |
test(tox): verify type annotations
| -rw-r--r-- | tox.ini | 8 |
1 files changed, 8 insertions, 0 deletions
@@ -14,6 +14,14 @@ commands = coverage run --omit="git/test/*" -m unittest --buffer {posargs} [testenv:flake8] commands = flake8 --ignore=W293,E265,E266,W503,W504,E731 {posargs} +[testenv:type] +description = type check ourselves +deps = + {[testenv]deps} + mypy +commands = + mypy -p git + [testenv:venv] commands = {posargs} |
