From 905dfa9a8d5f404a4728ba1a9e885d5f8b75a8db Mon Sep 17 00:00:00 2001 From: Alex Stokes Date: Sat, 3 Aug 2019 11:22:55 -0700 Subject: [PATCH] Remove dependence on `make` in tox CI run --- tox.ini | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/tox.ini b/tox.ini index a855a0a..c0e807e 100644 --- a/tox.ini +++ b/tox.ini @@ -35,6 +35,9 @@ basepython = [testenv:lint] basepython = python3 extras = dev -whitelist_externals = make commands = - make lintroll + # NOTE: disabling `mypy` until we get typing sorted in this repo + # mypy -p libp2p -p examples --config-file {toxinidir}/mypy.ini + black --check libp2p tests examples setup.py + isort --recursive --check-only libp2p tests examples setup.py + flake8 libp2p tests examples setup.py