From 78d6244b89bd37596cee413a5353fbcc4a60ad08 Mon Sep 17 00:00:00 2001 From: Lubomír Sedlář Date: Jun 10 2020 08:17:37 +0000 Subject: Rename tox targets Signed-off-by: Lubomír Sedlář --- diff --git a/tox.ini b/tox.ini index 2976b77..c2feb6f 100644 --- a/tox.ini +++ b/tox.ini @@ -1,19 +1,17 @@ [tox] -envlist = py27, py36 +envlist = flake8,black -[testenv] +[testenv:flake8] deps = flake8 whitelist_externals = sh commands = sh -c "flake8 pungi pungi_utils setup.py tests/*py" -[testenv:py36] +[testenv:black] deps = - {[testenv]deps} black commands = - {[testenv]commands} black --check --diff pungi pungi_utils setup.py tests --exclude tests/_composes [flake8]