From 2101a7af38bedf2a3ea2c6cb1f70834b7151a9fb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mart=C3=AD=20Bol=C3=ADvar?= Date: Wed, 22 Jan 2020 03:44:08 -0800 Subject: [PATCH] tox.ini: run linter first MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The linter finishes in a few seconds and its errors can be addressed quickly, whereas the test suite takes a bit longer to run. Let's do the fast thing first. Signed-off-by: Martí Bolívar --- tox.ini | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tox.ini b/tox.ini index aa12109..1d83ded 100644 --- a/tox.ini +++ b/tox.ini @@ -23,5 +23,5 @@ whitelist_externals = setenv = TOXTEMPDIR={envtmpdir} commands = - py.test --cov=west {posargs:tests} flake8 --config={toxinidir}/tox.ini {toxinidir} + py.test --cov=west {posargs:tests}