From 935e28fa0e8457d67b027e3e353db6738f0e5ed8 Mon Sep 17 00:00:00 2001 From: manchandavishal Date: Wed, 18 Jan 2023 15:56:31 +0530 Subject: [PATCH] Update tox.ini for tox4 OpenStack CI now uses tox4 by default. This patch drop "skipsdist = True". When skipsdist=True is specified, a target application is not installed into a tox env, but there seems no reason to do so. In various other OpenStack projects, a target applicatin needs to be installed into a tox vnev, for example, in docs and/or linter jobs and it causes failures with tox4. So dropping it would avoid potential future failures. Change-Id: Ic12cddd2fddee64ce115f209b1e10da3b66c689f --- tox.ini | 1 - 1 file changed, 1 deletion(-) diff --git a/tox.ini b/tox.ini index cb6efe9..f9b5bb5 100644 --- a/tox.ini +++ b/tox.ini @@ -1,7 +1,6 @@ [tox] minversion = 3.18.0 envlist = py3,pep8,npm -skipsdist = True ignore_basepython_conflict = True [testenv]