From a8253805dffb5598c311c23b854f987a18e69a15 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 --- tox.ini | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tox.ini b/tox.ini index 720af3fedd34..4465225f3d21 100644 --- a/tox.ini +++ b/tox.ini @@ -1,6 +1,6 @@ [tox] minversion = 2.1 -envlist = py{27,35},functional,pep8,pip-missing-reqs +envlist = py{27,35},functional,pep8 skipsdist = True [testenv]