Disables mypy in CI

Also moves linting to Makefile to take advantage of globbing.
This commit is contained in:
Alex Stokes 2019-08-02 10:52:53 -07:00
parent 612330d318
commit da9d5cadec
No known key found for this signature in database
GPG Key ID: 51CE1721B245C086
2 changed files with 6 additions and 2 deletions

4
Makefile Normal file
View File

@ -0,0 +1,4 @@
lintroll:
# NOTE: disabling `mypy` until we get typing sorted in this repo
# mypy -p libp2p -p examples --config-file {toxinidir}/mypy.ini
black --check examples libp2p/__init__.py libp2p/host libp2p/kademlia libp2p/network libp2p/peer libp2p/protocol_muxer libp2p/pubsub/*.py libp2p/routing libp2p/security libp2p/stream_muxer libp2p/transport tests setup.py

View File

@ -18,6 +18,6 @@ basepython =
[testenv:lint]
basepython = python3
extras = dev
whitelist_externals = make
commands =
mypy -p libp2p -p examples --config-file {toxinidir}/mypy.ini
black --check examples libp2p/__init__.py libp2p/host libp2p/kademlia libp2p/network libp2p/peer libp2p/protocol_muxer libp2p/pubsub/*.py libp2p/routing libp2p/security libp2p/stream_muxer libp2p/transport tests setup.py
make lintroll