From e5959d4d00150b088c51d94fd221e044d6fbb625 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luk=C3=A1=C5=A1=20Piwowarski?= Date: Mon, 16 Jan 2023 15:40:31 +0100 Subject: [PATCH] Fix opendev-tox-docs job With the upgrade of tox to a newer version we started to encounter failures in the opendev-tox-docs job. It looks like the interpretation of the variable changed. A similar problem was solved in tempest repository by removing the skipsdist option from tox [1]. It looks like a similar solution works for python-tempestconf as well. [1] https://review.opendev.org/c/openstack/tempest/+/868527 Depends-On: I006e33c5ea0753b68cf1feb8580cb029209af9a8 Change-Id: I9ee6570b72c10ea0466819008135ddebe891a445 --- tox.ini | 1 - 1 file changed, 1 deletion(-) diff --git a/tox.ini b/tox.ini index 4131998d..4e0fccc0 100644 --- a/tox.ini +++ b/tox.ini @@ -1,7 +1,6 @@ [tox] minversion = 3.18.0 envlist = py38,py37,py36,pypy,pep8 -skipsdist = True # this allows tox to infer the base python from the environment name # and override any basepython configured in this file ignore_basepython_conflict = true