Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Ability to share tox environments within a project #425

Closed
Apteryks opened this issue Dec 14, 2016 · 14 comments
Closed

Ability to share tox environments within a project #425

Apteryks opened this issue Dec 14, 2016 · 14 comments
Labels
area:configuration area:testenv-creation help:wanted Issues that have been acknowledged, a solution determined and a PR might likely be accepted. level:hard rought estimate that this might be quite hard to implement

Comments

@Apteryks
Copy link

Reproducing Steps

  1. Save the following configuration in a "tox.ini" somewhere. Note that the "envdir" is commented out for now.
[tox]
skipsdist = True
envlist = py27,pylint

[testenv]
deps =
    pytest
    pylint
commands =
    pytest --version

[testenv:pylint]
#envdir = {toxworkdir}/py27
commands = pylint --version
  1. In the same directory of this newly created tox.ini file, execute tox twice (tox). The output should look like that:

py27 installed: astroid==1.4.8,backports.functools-lru-cache==1.3,configparser==3.5.0,isort==4.2.5,lazy-object-proxy==1.2.2,mccabe==0.5.2,py==1.4.31,pylint==1.6.4,pytest==3.0.5,six==1.10.0,wrapt==1.10.8
py27 runtests: PYTHONHASHSEED='2007619177'
py27 runtests: commands[0] | pytest --version
This is pytest version 3.0.5, imported from /home/mcournoyer/workspace/test_proj/.tox/py27/lib/python2.7/site-packages/pytest.pyc
pylint installed: astroid==1.4.8,backports.functools-lru-cache==1.3,configparser==3.5.0,isort==4.2.5,lazy-object-proxy==1.2.2,mccabe==0.5.2,py==1.4.31,pylint==1.6.4,pytest==3.0.5,six==1.10.0,wrapt==1.10.8
pylint runtests: PYTHONHASHSEED='2007619177'
pylint runtests: commands[0] | pylint --version
No config file found, using default configuration
pylint 1.6.4,
astroid 1.4.8
Python 2.7.6 (default, Oct 26 2016, 20:30:19)
[GCC 4.8.4]
_____________________________________________________ summary ______________________________________________________
py27: commands succeeded
pylint: commands succeeded
congratulations :)

real 0m2.066s
user 0m1.804s
sys 0m0.224s

  1. Now uncomment the line "#envdir = {toxworkdir}/py27" in the tox.ini file and save it, and rerun tox twice. The output should now look like:

py27 recreate: /home/mcournoyer/workspace/test_proj/.tox/py27
py27 installdeps: pytest, pylint
py27 installed: astroid==1.4.8,backports.functools-lru-cache==1.3,configparser==3.5.0,isort==4.2.5,lazy-object-proxy==1.2.2,mccabe==0.5.2,py==1.4.31,pylint==1.6.4,pytest==3.0.5,six==1.10.0,wrapt==1.10.8
py27 runtests: PYTHONHASHSEED='809406144'
py27 runtests: commands[0] | pytest --version
This is pytest version 3.0.5, imported from /home/mcournoyer/workspace/test_proj/.tox/py27/lib/python2.7/site-packages/pytest.pyc
pylint recreate: /home/mcournoyer/workspace/test_proj/.tox/py27
pylint installdeps: pytest, pylint
pylint installed: astroid==1.4.8,backports.functools-lru-cache==1.3,configparser==3.5.0,isort==4.2.5,lazy-object-proxy==1.2.2,mccabe==0.5.2,py==1.4.31,pylint==1.6.4,pytest==3.0.5,six==1.10.0,wrapt==1.10.8
pylint runtests: PYTHONHASHSEED='809406144'
pylint runtests: commands[0] | pylint --version
No config file found, using default configuration
pylint 1.6.4,
astroid 1.4.8
Python 2.7.6 (default, Oct 26 2016, 20:30:19)
[GCC 4.8.4]
_____________________________________________________ summary ______________________________________________________
py27: commands succeeded
pylint: commands succeeded
congratulations :)

real 0m11.402s
user 0m9.856s
sys 0m1.440s

  1. Observe that, when reusing the same envdir, the environment always gets recreated (and takes more time to do so) even though the two targets (pytest & pylint) share the exact same requirements.

System Information

OS: Ubuntu 14.04
tox version: 2.5.0
Python version: 2.7.12
pip list: Too many to list here (can provide upon request).

@obestwalter
Copy link
Member

Thanks for the detailed report @Apteryks.

@Apteryks
Copy link
Author

Apteryks commented Dec 16, 2016 via email

@speedyleion
Copy link

I was able to reproduce this on windows with version 2.5.0

I've traced it to this function in config.py

 def basepython_default(testenv_config, value):
        if value is None:
            for f in testenv_config.factors:
                if f in default_factors:
                    return default_factors[f]
            return sys.executable
        return str(value)

It looks like py27 is a default factor so it grabs the basepython from the default_factors dictionary, this happens to be python2.7.
pylint is not a default factor and thus uses sys.executable. This makes the two environments differ so that each one is being recreated.

You can work around this by setting basepython in the pylint environment to python2.7

[testenv:pylint]
basepython=python2.7
envdir = {toxworkdir}/py27
commands = pylint --version

@speedyleion
Copy link

@Apteryks if you do discover that the issue can be resolved by specifying basepython, I think that may be by design:

It would seem pylint is doing what is expected it's not a default so it uses sys.executable. py27 is a default so it finds the systems python2.7 executable.
Again this is only if the basepython fixes the problem you were seeing.

@obestwalter
Copy link
Member

obestwalter commented Mar 10, 2017

@speedyleion thanks for digging into this. I agree that this is a side effect of sharing between a default environment and a non-default environemnt. It is obvious if you share environments that use different interpreters. What is surprising to me is, that the recreation also happens when sharing the same interpreter unless you set basepython as you decribed.

To summarize if you run tox with Python 3.6 the following happens ...

With tox.ini:

[tox]
envlist = py36,nonstandard
[testenv]
envdir = {toxworkdir}/sharedenvdir
commands = python --version

=> against expectation: constant recreation although interpreter is the same for both environments.

With tox.ini:

[tox]
envlist = nonstandard1,nonstandard2
[testenv]
envdir = {toxworkdir}/sharedenvdir
commands = python --version

=> as expected: environment is reused

With tox.ini:

[tox]
envlist = py36,nonstandard
[testenv]
basepython=python3.6
envdir = {toxworkdir}/sharedenvdir
commands = python --version

=> as expected: environment is reused

I guess this is an unintended side effect of the default environments. @hpk42 - what do you think?

BTW: To weird things up one can do:

[tox]
envlist = py36,py27
[testenv]
basepython=python3.6
envdir = {toxworkdir}/sharedenvdir
commands = python --version

... which leads to the py27 environment also be run with python3.6 which is very likely not intended by the user and a mistake in the configuration. This might lead to unnecessary confusion and I wonder if we should catch that and throw an appropriate error, when we encounter configurations like that?

@Apteryks
Copy link
Author

Apteryks commented Mar 12, 2017

@speedyleion, @obestwalter: Thanks for looking into this. I can confirm that the environments stop being recreated when I set basepython to python2.7 either in the non-standard environment section [testenv:pylint] or in the shared base environment [testenv].

So I'm grateful I could make it work, but I'm wondering what could be made to make this situation less confusing. Maybe the information that is used to "identify" an interpreter could be taken from its '--version' output rather than its path? It would still be a weak verification, but it would at least allow sharing the envdirs between standard and non-standard environment without setting this not-so-intuitive basepython, provided the sys.executable and the python2.7/python3.6, etc '--version' output match.

@obestwalter
Copy link
Member

If you want to look into that a bit more in detail - a PR fixing that will likely be merged, as this is definitely not desirable behaviour. The default environments seem to be a bit special though and I have not looked into their implications in detail though, so there might be some surprises waiting ... it might as well just be though that this is just a case that hasn't been considered in the original implication and is fairly easy to fix in the way that you propose.

BTW My last example should definitely throw an error as I can't imagine any sane use case for that, or am I missing something? I think that is another issue though, so I will open one for that.

@obestwalter obestwalter added area:configuration bug:normal affects many people or has quite an impact level:medium rought estimate that this might be neither easy nor hard to implement and removed bug labels Sep 4, 2017
stephenfin added a commit to stephenfin/tox that referenced this issue Jun 8, 2018
tox provides a number of default factors - py27, py34, py35 etc. - that
are tied to particular interpreter versions. It is possible to override
these through individual sections or the global [testenv] section. For
example, consider the following 'tox.ini' file:

  [tox]
  skipsdist = True
  minversion = 2.0
  distribute = False
  envlist = py35,py27,pep8,py34-test

  [testenv]
  basepython = python3
  install_command = pip install {opts} {packages}
  commands =
    python --version

  [testenv:py27]
  basepython = python2.7

Running any target except for 'py27' will result in the same interpreter
being used. On Fedora 28 with the 'python3-tox' package:

  $ tox -qq -e py27
  Python 2.7.15
  $ tox -qq -e py35
  Python 3.6.5
  $ tox -qq -e py34-test
  Python 3.6.5

This is broken by design. Overriding these makes no sense and is a
source of common misconfigurations, as noted in tox-dev#425. The only sane
thing to do here is ignore the request and use the correct interpreter
so this is what's done. A log is included to alert people to their
potential misconfigurations.

Signed-off-by: Stephen Finucane <[email protected]>
Closes: tox-dev#425
openstack-gerrit pushed a commit to openstack-archive/ceilometer-powervm that referenced this issue Jun 9, 2018
We want to default to running all tox environments under python 3, so
set the basepython value in each environment.

We do not want to specify a minor version number, because we do not
want to have to update the file every time we upgrade python.

We can't set the override once in testenv, because that
breaks the more specific versions used in default environments like
py35 and py36 due to tox-dev/tox#425

Change-Id: I27cdedcdd7d499da545444174efb06a0f5b3948e
openstack-gerrit pushed a commit to openstack/os-service-types that referenced this issue Jun 11, 2018
We want to default to running all tox environments under python 3, so
set the basepython value in each environment.

We do not want to specify a minor version number, because we do not
want to have to update the file every time we upgrade python.

We can't set the override once in testenv, because that
breaks the more specific versions used in default environments like
py35 and py36 due to tox-dev/tox#425

Change-Id: Ibeb97401c13fb1cb35f824082eb6b3209c868beb
openstack-gerrit pushed a commit to openstack/nova that referenced this issue Jun 13, 2018
We want to default to running all tox environments under python 3, so
set the basepython value in [testenv].

We do not want to specify a minor version number, because we do not
want to have to update the file every time we upgrade python.

We must explicitly set basepython in envs that are usually "automatic" -
otherwise due to tox-dev/tox#425 these will
use `basepython` instead of their automatic equivalents.

Change-Id: I1026110f0f1736127cf0af8ec2ef791a0f999e3a
Signed-off-by: Doug Hellmann <[email protected]>
openstack-gerrit pushed a commit to openstack/sphinx-feature-classification that referenced this issue Jun 14, 2018
We want to default to running all tox environments under python 3, so
set the basepython value in each environment.

We do not want to specify a minor version number, because we do not
want to have to update the file every time we upgrade python.

We can't set the override once in testenv, because that
breaks the more specific versions used in default environments like
py35 and py36 due to tox-dev/tox#425

Change-Id: I9abfcb14c06a6a9d31e9f53278dd11eccdef488d
openstack-gerrit pushed a commit to openstack-archive/nova-powervm that referenced this issue Jun 18, 2018
We want to default to running all tox environments under python 3, so
set the basepython value in each environment.

We do not want to specify a minor version number, because we do not
want to have to update the file every time we upgrade python.

We can't set the override once in testenv, because that
breaks the more specific versions used in default environments like
py35 and py36 due to tox-dev/tox#425

Change-Id: I9eca1cc89f809a219636278bb72b65d61657db75
@gaborbernat gaborbernat added the help:wanted Issues that have been acknowledged, a solution determined and a PR might likely be accepted. label May 2, 2019
gdemonet added a commit to scality/metalk8s that referenced this issue Jul 12, 2019
The latest version raises issues due to our basepython being set to
`python3`, which does not match the `python3.6` we use for the `docs`
environment.

More details on this behaviour:
tox-dev/tox#425
@wolfch-elsevier
Copy link

I have:

[tox]
envlist = py37,unit_tests
skipsdist = True

[testenv]
basepython = python3.7
passenv = USER

[testenv:unit_tests]
basepython = python3.7
envdir = {toxworkdir}/py37
deps = -r dev-requirements.txt
commands = py.test -s -v tests/unit_test

Even though I added basepython = python3.7 to the [testenv:unit_tests] section, it keeps recreating py37, so the workaround doesn't work for me.

@gaborbernat gaborbernat changed the title Environment is always recreated when reusing the same envdir Ability to share tox environments within a project Mar 17, 2021
@gaborbernat
Copy link
Member

Officially we don't allow sharing tox environments at the moment, which is what you're doing by making that config change.

@wolfch-elsevier
Copy link

Officially we don't allow sharing tox environments at the moment, which is what you're doing by making that config change.

Hi, thanks for the rapid response!

  • I was just noting that the workaround described at issuecomment didn't work for me.
  • So are you suggesting that each tox environment has to have it's own virtualenv even if the Python version and dependencies are identical?

@gaborbernat
Copy link
Member

Yes 👍🏻 as of today.

@gaborbernat gaborbernat removed the bug:normal affects many people or has quite an impact label Apr 5, 2021
openstack-mirroring pushed a commit to openstack/openstack that referenced this issue Oct 14, 2024
* Update cloudkitty-dashboard from branch 'master'
  to 95485bda372ab9b81574c041d63730b7e5112944
  - Merge "tox: Drop envdir"
  - tox: Drop envdir
    
    tox now always recreates an env although the env is shared using envdir
    options.
    ~~~
    $ tox -e genpolicy
    genpolicy: recreate env because env type changed from
    {'name': 'genconfig', 'type': 'VirtualEnvRunner'} to
    {'name': 'genpolicy', 'type': 'VirtualEnvRunner'}
    ~~~
    
    According to the maintainer of tox, this functionality is not intended
    to be supported.
    tox-dev/tox#425 (comment)
    
    Change-Id: Ib1835482e9e0fb40b65bb5246e66ef5151810e6a
openstack-mirroring pushed a commit to openstack/cloudkitty-dashboard that referenced this issue Oct 14, 2024
tox now always recreates an env although the env is shared using envdir
options.
~~~
$ tox -e genpolicy
genpolicy: recreate env because env type changed from
{'name': 'genconfig', 'type': 'VirtualEnvRunner'} to
{'name': 'genpolicy', 'type': 'VirtualEnvRunner'}
~~~

According to the maintainer of tox, this functionality is not intended
to be supported.
tox-dev/tox#425 (comment)

Change-Id: Ib1835482e9e0fb40b65bb5246e66ef5151810e6a
openstack-mirroring pushed a commit to openstack/openstack that referenced this issue Oct 15, 2024
* Update cinder from branch 'master'
  to 8c5b35a1a96b10fa3af657e5ca83004278096ddf
  - tox: Drop envdir
    
    tox now always recreates an env although the env is shared using envdir
    options.
    ~~~
    $ tox -e genpolicy
    genpolicy: recreate env because env type changed from
    {'name': 'genconfig', 'type': 'VirtualEnvRunner'} to
    {'name': 'genpolicy', 'type': 'VirtualEnvRunner'}
    ~~~
    
    According to the maintainer of tox, this functionality is not intended
    to be supported.
    tox-dev/tox#425 (comment)
    
    Change-Id: I50ac742749b3a58cfd143ce92da72118e497f2af
openstack-mirroring pushed a commit to openstack/cinder that referenced this issue Oct 15, 2024
tox now always recreates an env although the env is shared using envdir
options.
~~~
$ tox -e genpolicy
genpolicy: recreate env because env type changed from
{'name': 'genconfig', 'type': 'VirtualEnvRunner'} to
{'name': 'genpolicy', 'type': 'VirtualEnvRunner'}
~~~

According to the maintainer of tox, this functionality is not intended
to be supported.
tox-dev/tox#425 (comment)

Change-Id: I50ac742749b3a58cfd143ce92da72118e497f2af
openstack-mirroring pushed a commit to openstack/openstack that referenced this issue Oct 16, 2024
* Update networking-generic-switch from branch 'master'
  to 3fe58bf5a7106d6e5b341cb996b610544f50bdf1
  - Merge "tox: Drop envdir"
  - tox: Drop envdir
    
    tox now always recreates an env although the env is shared using envdir
    options.
    ~~~
    $ tox -e genpolicy
    genpolicy: recreate env because env type changed from
    {'name': 'genconfig', 'type': 'VirtualEnvRunner'} to
    {'name': 'genpolicy', 'type': 'VirtualEnvRunner'}
    ~~~
    
    According to the maintainer of tox, this functionality is not intended
    to be supported.
    tox-dev/tox#425 (comment)
    
    Change-Id: Ibbd2be42a566374e86ad57fc6ae1202bae6d7d43
openstack-mirroring pushed a commit to openstack/networking-generic-switch that referenced this issue Oct 16, 2024
tox now always recreates an env although the env is shared using envdir
options.
~~~
$ tox -e genpolicy
genpolicy: recreate env because env type changed from
{'name': 'genconfig', 'type': 'VirtualEnvRunner'} to
{'name': 'genpolicy', 'type': 'VirtualEnvRunner'}
~~~

According to the maintainer of tox, this functionality is not intended
to be supported.
tox-dev/tox#425 (comment)

Change-Id: Ibbd2be42a566374e86ad57fc6ae1202bae6d7d43
openstack-mirroring pushed a commit to openstack/openstack that referenced this issue Oct 17, 2024
* Update designate-dashboard from branch 'master'
  to 65cdcd01ce0f90c7e64725bbfc9a4d5f846e8b91
  - Merge "tox: Drop envdir"
  - tox: Drop envdir
    
    tox now always recreates an env although the env is shared using envdir
    options.
    ~~~
    $ tox -e genpolicy
    genpolicy: recreate env because env type changed from
    {'name': 'genconfig', 'type': 'VirtualEnvRunner'} to
    {'name': 'genpolicy', 'type': 'VirtualEnvRunner'}
    ~~~
    
    According to the maintainer of tox, this functionality is not intended
    to be supported.
    tox-dev/tox#425 (comment)
    
    Change-Id: I39767340ba7fb362628887fd97ca8ecd62318007
openstack-mirroring pushed a commit to openstack/designate-dashboard that referenced this issue Oct 17, 2024
tox now always recreates an env although the env is shared using envdir
options.
~~~
$ tox -e genpolicy
genpolicy: recreate env because env type changed from
{'name': 'genconfig', 'type': 'VirtualEnvRunner'} to
{'name': 'genpolicy', 'type': 'VirtualEnvRunner'}
~~~

According to the maintainer of tox, this functionality is not intended
to be supported.
tox-dev/tox#425 (comment)

Change-Id: I39767340ba7fb362628887fd97ca8ecd62318007
openstack-mirroring pushed a commit to openstack/openstack that referenced this issue Oct 30, 2024
* Update python-neutronclient from branch 'master'
  to 1befb3cd088ba9e2a84fbae0e37f7ed8c4611bc8
  - Merge "tox: Drop envdir"
  - tox: Drop envdir
    
    tox now always recreates an env although the env is shared using envdir
    options.
    ~~~
    $ tox -e genpolicy
    genpolicy: recreate env because env type changed from
    {'name': 'genconfig', 'type': 'VirtualEnvRunner'} to
    {'name': 'genpolicy', 'type': 'VirtualEnvRunner'}
    ~~~
    
    According to the maintainer of tox, this functionality is not intended
    to be supported.
    tox-dev/tox#425 (comment)
    
    Change-Id: I496d3ffe65be13df80c29ac4582596be0aa4d909
openstack-mirroring pushed a commit to openstack/python-neutronclient that referenced this issue Oct 30, 2024
tox now always recreates an env although the env is shared using envdir
options.
~~~
$ tox -e genpolicy
genpolicy: recreate env because env type changed from
{'name': 'genconfig', 'type': 'VirtualEnvRunner'} to
{'name': 'genpolicy', 'type': 'VirtualEnvRunner'}
~~~

According to the maintainer of tox, this functionality is not intended
to be supported.
tox-dev/tox#425 (comment)

Change-Id: I496d3ffe65be13df80c29ac4582596be0aa4d909
openstack-mirroring pushed a commit to openstack/openstack that referenced this issue Nov 5, 2024
* Update horizon from branch 'master'
  to d844cb0b65ea3fd6045fd839ee2263a192ddfe16
  - Merge "tox: Drop envdir"
  - tox: Drop envdir
    
    tox now always recreates an env although the env is shared using envdir
    options.
    ~~~
    $ tox -e genpolicy
    genpolicy: recreate env because env type changed from
    {'name': 'genconfig', 'type': 'VirtualEnvRunner'} to
    {'name': 'genpolicy', 'type': 'VirtualEnvRunner'}
    ~~~
    
    According to the maintainer of tox, this functionality is not intended
    to be supported.
    tox-dev/tox#425 (comment)
    
    Change-Id: Ibda3bf5547b3530f854c667140699ecc8486ee85
openstack-mirroring pushed a commit to openstack/horizon that referenced this issue Nov 5, 2024
tox now always recreates an env although the env is shared using envdir
options.
~~~
$ tox -e genpolicy
genpolicy: recreate env because env type changed from
{'name': 'genconfig', 'type': 'VirtualEnvRunner'} to
{'name': 'genpolicy', 'type': 'VirtualEnvRunner'}
~~~

According to the maintainer of tox, this functionality is not intended
to be supported.
tox-dev/tox#425 (comment)

Change-Id: Ibda3bf5547b3530f854c667140699ecc8486ee85
openstack-mirroring pushed a commit to openstack/openstack that referenced this issue Nov 27, 2024
* Update octavia from branch 'master'
  to 3aaff5e3f7c857f253edf18bac432a32dc15a325
  - Merge "tox: Drop envdir"
  - tox: Drop envdir
    
    tox now always recreates an env although the env is shared using envdir
    options.
    ~~~
    $ tox -e genpolicy
    genpolicy: recreate env because env type changed from
    {'name': 'genconfig', 'type': 'VirtualEnvRunner'} to
    {'name': 'genpolicy', 'type': 'VirtualEnvRunner'}
    ~~~
    
    According to the maintainer of tox, this functionality is not intended
    to be supported.
    tox-dev/tox#425 (comment)
    
    Change-Id: Ia842a72d618cf4b27ebaab0f2c576bb7eb76ab24
openstack-mirroring pushed a commit to openstack/octavia that referenced this issue Nov 27, 2024
tox now always recreates an env although the env is shared using envdir
options.
~~~
$ tox -e genpolicy
genpolicy: recreate env because env type changed from
{'name': 'genconfig', 'type': 'VirtualEnvRunner'} to
{'name': 'genpolicy', 'type': 'VirtualEnvRunner'}
~~~

According to the maintainer of tox, this functionality is not intended
to be supported.
tox-dev/tox#425 (comment)

Change-Id: Ia842a72d618cf4b27ebaab0f2c576bb7eb76ab24
uggla pushed a commit to uggla/nova that referenced this issue Jan 2, 2025
tox now always recreates an env although the env is shared using envdir
options.
~~~
$ tox -e genpolicy
genpolicy: recreate env because env type changed from
{'name': 'genconfig', 'type': 'VirtualEnvRunner'} to
{'name': 'genpolicy', 'type': 'VirtualEnvRunner'}
~~~

According to the maintainer of tox, this functionality is not intended
to be supported.
tox-dev/tox#425 (comment)

There is a note not to remove the option for bandit integration job but
the note is no longer valid since the functionality itself no longer
works with recent tox.

Change-Id: I2ba52a9ecc5cc24dee98837e0513897cba2eb046
openstack-mirroring pushed a commit to openstack/openstack that referenced this issue Jan 9, 2025
* Update watcher from branch 'master'
  to 4d8bb57c8d0171239d0b59d8b9af26f38a7f173f
  - Merge "tox: Drop envdir"
  - tox: Drop envdir
    
    tox now always recreates an env although the env is shared using envdir
    options.
    ~~~
    $ tox -e genpolicy
    genpolicy: recreate env because env type changed from
    {'name': 'genconfig', 'type': 'VirtualEnvRunner'} to
    {'name': 'genpolicy', 'type': 'VirtualEnvRunner'}
    ~~~
    
    According to the maintainer of tox, this functionality is not intended
    to be supported.
    tox-dev/tox#425 (comment)
    
    Change-Id: I9c1f574c6d45a7be808a023f01dee13c3ac2c72e
openstack-mirroring pushed a commit to openstack/watcher that referenced this issue Jan 9, 2025
tox now always recreates an env although the env is shared using envdir
options.
~~~
$ tox -e genpolicy
genpolicy: recreate env because env type changed from
{'name': 'genconfig', 'type': 'VirtualEnvRunner'} to
{'name': 'genpolicy', 'type': 'VirtualEnvRunner'}
~~~

According to the maintainer of tox, this functionality is not intended
to be supported.
tox-dev/tox#425 (comment)

Change-Id: I9c1f574c6d45a7be808a023f01dee13c3ac2c72e
lukeodom pushed a commit to lukeodom/ironic-python-agent that referenced this issue Jan 15, 2025
tox now always recreates an env although the env is shared using envdir
options.
~~~
$ tox -e genpolicy
genpolicy: recreate env because env type changed from
{'name': 'genconfig', 'type': 'VirtualEnvRunner'} to
{'name': 'genpolicy', 'type': 'VirtualEnvRunner'}
~~~

According to the maintainer of tox, this functionality is not intended
to be supported.
tox-dev/tox#425 (comment)

Change-Id: I2cef53e151b9da265989c55e165b7521af32d44d
openstack-mirroring pushed a commit to openstack/openstack that referenced this issue Feb 11, 2025
* Update whereto from branch 'master'
  to 413c619a3fe4b22dea0b24d80c06833ef5060e12
  - tox: Drop envdir
    
    tox now always recreates an env although the env is shared using envdir
    options.
    ~~~
    $ tox -e genpolicy
    genpolicy: recreate env because env type changed from
    {'name': 'genconfig', 'type': 'VirtualEnvRunner'} to
    {'name': 'genpolicy', 'type': 'VirtualEnvRunner'}
    ~~~
    
    According to the maintainer of tox, this functionality is not intended
    to be supported.
    tox-dev/tox#425 (comment)
    
    Change-Id: Ifdc56a37529dfc77d7b96e5cdde9cfa7da8349be
openstack-mirroring pushed a commit to openstack/whereto that referenced this issue Feb 11, 2025
tox now always recreates an env although the env is shared using envdir
options.
~~~
$ tox -e genpolicy
genpolicy: recreate env because env type changed from
{'name': 'genconfig', 'type': 'VirtualEnvRunner'} to
{'name': 'genpolicy', 'type': 'VirtualEnvRunner'}
~~~

According to the maintainer of tox, this functionality is not intended
to be supported.
tox-dev/tox#425 (comment)

Change-Id: Ifdc56a37529dfc77d7b96e5cdde9cfa7da8349be
openstack-mirroring pushed a commit to openstack/openstackdocstheme that referenced this issue Feb 11, 2025
tox now always recreates an env although the env is shared using envdir
options.
~~~
$ tox -e genpolicy
genpolicy: recreate env because env type changed from
{'name': 'genconfig', 'type': 'VirtualEnvRunner'} to
{'name': 'genpolicy', 'type': 'VirtualEnvRunner'}
~~~

According to the maintainer of tox, this functionality is not intended
to be supported.
tox-dev/tox#425 (comment)

Change-Id: I060355cf8d8fb76d3172d977c3aa17e28dceee1d
openstack-mirroring pushed a commit to openstack/openstack that referenced this issue Feb 11, 2025
* Update openstackdocstheme from branch 'master'
  to 045cb223c478bc7ca1a8114b2d51ed4f78c2d765
  - tox: Drop envdir
    
    tox now always recreates an env although the env is shared using envdir
    options.
    ~~~
    $ tox -e genpolicy
    genpolicy: recreate env because env type changed from
    {'name': 'genconfig', 'type': 'VirtualEnvRunner'} to
    {'name': 'genpolicy', 'type': 'VirtualEnvRunner'}
    ~~~
    
    According to the maintainer of tox, this functionality is not intended
    to be supported.
    tox-dev/tox#425 (comment)
    
    Change-Id: I060355cf8d8fb76d3172d977c3aa17e28dceee1d
openstack-mirroring pushed a commit to openstack/openstack that referenced this issue Feb 12, 2025
* Update neutron-fwaas-dashboard from branch 'master'
  to 7326aee7b6f0b48137baf90bed9a1c40c31b2b5b
  - Merge "tox: Drop envdir"
  - tox: Drop envdir
    
    tox now always recreates an env although the env is shared using envdir
    options.
    ~~~
    $ tox -e genpolicy
    genpolicy: recreate env because env type changed from
    {'name': 'genconfig', 'type': 'VirtualEnvRunner'} to
    {'name': 'genpolicy', 'type': 'VirtualEnvRunner'}
    ~~~
    
    According to the maintainer of tox, this functionality is not intended
    to be supported.
    tox-dev/tox#425 (comment)
    
    Change-Id: I09fe2578ceeb47552d1471d0c6efbf1d3f514e1e
openstack-mirroring pushed a commit to openstack/neutron-fwaas-dashboard that referenced this issue Feb 12, 2025
tox now always recreates an env although the env is shared using envdir
options.
~~~
$ tox -e genpolicy
genpolicy: recreate env because env type changed from
{'name': 'genconfig', 'type': 'VirtualEnvRunner'} to
{'name': 'genpolicy', 'type': 'VirtualEnvRunner'}
~~~

According to the maintainer of tox, this functionality is not intended
to be supported.
tox-dev/tox#425 (comment)

Change-Id: I09fe2578ceeb47552d1471d0c6efbf1d3f514e1e
openstack-mirroring pushed a commit to openstack/openstack that referenced this issue Feb 12, 2025
* Update neutron-vpnaas-dashboard from branch 'master'
  to a9d98a0fd8c6d1bd0b81582710f265c8d4ac10a3
  - Merge "tox: Drop envdir"
  - tox: Drop envdir
    
    tox now always recreates an env although the env is shared using envdir
    options.
    ~~~
    $ tox -e genpolicy
    genpolicy: recreate env because env type changed from
    {'name': 'genconfig', 'type': 'VirtualEnvRunner'} to
    {'name': 'genpolicy', 'type': 'VirtualEnvRunner'}
    ~~~
    
    According to the maintainer of tox, this functionality is not intended
    to be supported.
    tox-dev/tox#425 (comment)
    
    Change-Id: I9f8daccd385a5b93f13da03a5e5a40575146a47b
openstack-mirroring pushed a commit to openstack/neutron-vpnaas-dashboard that referenced this issue Feb 12, 2025
tox now always recreates an env although the env is shared using envdir
options.
~~~
$ tox -e genpolicy
genpolicy: recreate env because env type changed from
{'name': 'genconfig', 'type': 'VirtualEnvRunner'} to
{'name': 'genpolicy', 'type': 'VirtualEnvRunner'}
~~~

According to the maintainer of tox, this functionality is not intended
to be supported.
tox-dev/tox#425 (comment)

Change-Id: I9f8daccd385a5b93f13da03a5e5a40575146a47b
openstack-mirroring pushed a commit to openstack/openstack that referenced this issue Feb 12, 2025
* Update watcher-tempest-plugin from branch 'master'
  to 85a508583b3ac86ad3095e9a0fd1c064ef0484e2
  - Merge "tox: Drop envdir"
  - tox: Drop envdir
    
    tox now always recreates an env although the env is shared using envdir
    options.
    ~~~
    $ tox -e genpolicy
    genpolicy: recreate env because env type changed from
    {'name': 'genconfig', 'type': 'VirtualEnvRunner'} to
    {'name': 'genpolicy', 'type': 'VirtualEnvRunner'}
    ~~~
    
    According to the maintainer of tox, this functionality is not intended
    to be supported.
    tox-dev/tox#425 (comment)
    
    Change-Id: I57f434e8d77f3e22bf2b322e75b1c35c315bdc90
openstack-mirroring pushed a commit to openstack/watcher-tempest-plugin that referenced this issue Feb 12, 2025
tox now always recreates an env although the env is shared using envdir
options.
~~~
$ tox -e genpolicy
genpolicy: recreate env because env type changed from
{'name': 'genconfig', 'type': 'VirtualEnvRunner'} to
{'name': 'genpolicy', 'type': 'VirtualEnvRunner'}
~~~

According to the maintainer of tox, this functionality is not intended
to be supported.
tox-dev/tox#425 (comment)

Change-Id: I57f434e8d77f3e22bf2b322e75b1c35c315bdc90
openstack-mirroring pushed a commit to openstack/python-cloudkittyclient that referenced this issue Feb 17, 2025
tox now always recreates an env although the env is shared using envdir
options.
~~~
$ tox -e genpolicy
genpolicy: recreate env because env type changed from
{'name': 'genconfig', 'type': 'VirtualEnvRunner'} to
{'name': 'genpolicy', 'type': 'VirtualEnvRunner'}
~~~

According to the maintainer of tox, this functionality is not intended
to be supported.
tox-dev/tox#425 (comment)

Change-Id: I3155eb73edb09184a29522708ef2f676bd06fb7f
openstack-mirroring pushed a commit to openstack/openstack that referenced this issue Feb 17, 2025
* Update python-cloudkittyclient from branch 'master'
  to 4f375f8d237db350d5d8626c58f6970150d494c2
  - tox: Drop envdir
    
    tox now always recreates an env although the env is shared using envdir
    options.
    ~~~
    $ tox -e genpolicy
    genpolicy: recreate env because env type changed from
    {'name': 'genconfig', 'type': 'VirtualEnvRunner'} to
    {'name': 'genpolicy', 'type': 'VirtualEnvRunner'}
    ~~~
    
    According to the maintainer of tox, this functionality is not intended
    to be supported.
    tox-dev/tox#425 (comment)
    
    Change-Id: I3155eb73edb09184a29522708ef2f676bd06fb7f
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
area:configuration area:testenv-creation help:wanted Issues that have been acknowledged, a solution determined and a PR might likely be accepted. level:hard rought estimate that this might be quite hard to implement
Projects
None yet
Development

No branches or pull requests

6 participants