-
-
Notifications
You must be signed in to change notification settings - Fork 531
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
Comments
Thanks for the detailed report @Apteryks. |
No problem! And thanks for the great software!
|
I was able to reproduce this on windows with version 2.5.0 I've traced it to this function in config.py
It looks like You can work around this by setting
|
@Apteryks if you do discover that the issue can be resolved by specifying
It would seem |
@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 To summarize if you run tox with Python 3.6 the following happens ... With
=> against expectation: constant recreation although interpreter is the same for both environments. With
=> as expected: environment is reused With
=> 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:
... 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? |
@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. |
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. |
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
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
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
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]>
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
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
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
I have:
Even though I added |
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!
|
Yes 👍🏻 as of today. |
* 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
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
* 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
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
* 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
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
* 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
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
* 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
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
* 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
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
* 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
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
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
* 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
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
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
* 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
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
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
* 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
* 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
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
* 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
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
* 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
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
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
* 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
Reproducing Steps
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
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
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).
The text was updated successfully, but these errors were encountered: