From 187ad17728051971583cdc8ff03f9f464b26f30b Mon Sep 17 00:00:00 2001 From: Chris Dent Date: Mon, 3 Sep 2018 19:13:38 +0100 Subject: [PATCH] Removing pip-missing-reqs from default tox jobs Change I1b02384494ae9f440b72b98d9ae5f31d88dc8967 removed the tox env entry for pip-missing-reqs but did not remove the job from the envlist. This means that if you run tox with no args it will run that job, using the default venv setup with takes time but runs no tests. Change-Id: I8355372da93b93cc1c7f7a1501af0fbd01eee615 (cherry picked from commit a8253805dffb5598c311c23b854f987a18e69a15) --- tox.ini | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tox.ini b/tox.ini index b07509f05368..800557efb6ed 100644 --- a/tox.ini +++ b/tox.ini @@ -1,6 +1,6 @@ [tox] minversion = 2.1 -envlist = py{35,27},functional,pep8,pip-missing-reqs +envlist = py{35,27},functional,pep8 skipsdist = True [testenv]