From 66be6d9f914c1b6afda293f2f9122b00ac90737f Mon Sep 17 00:00:00 2001 From: Jiri Podivin Date: Fri, 11 Jun 2021 16:19:28 +0200 Subject: [PATCH] Removing the 'PIP_+' string from tox.ini Presence of the string causes following error, when running molecule tests on local: 'Error: error parsing host environment variables: name "PIP_+ VIRTUAL_ENV" has white spaces, poorly formatted name' After removing it the molecule tests are able to run successfuly. Furthermore I found no reference to the purpose of the string in either the tox documentation, or by searching for the same string on github. It appears we are the only project hosting code on the service, using this particular setting. I therefore assume that it is nonessential. Signed-off-by: Jiri Podivin Change-Id: I61641a1d4ddd017451b4aa7aea1e6eae6439b53d --- tox.ini | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tox.ini b/tox.ini index 18ec635..33e4490 100644 --- a/tox.ini +++ b/tox.ini @@ -26,7 +26,7 @@ setenv = # pip: Avoid 2020-01-01 warnings: https://github.com/pypa/pip/issues/6207 # paramiko CryptographyDeprecationWarning: https://github.com/ansible/ansible/issues/52598 PYTHONWARNINGS=ignore:DEPRECATION::pip._internal.cli.base_command,ignore::UserWarning - PIP_+ VIRTUAL_ENV={envdir} + VIRTUAL_ENV={envdir} LANG=en_US.UTF-8 LANGUAGE=en_US:en LC_ALL=C