We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
It seems like there are consistent InvalidArchiveError's when attempting to run tox-conda in parallel on Jenkins similar to the way tox advises it to be set up. As shown here: https://tox.readthedocs.io/en/latest/example/jenkins.html#running-tox-environments-in-parallel
InvalidArchiveError
tox-conda
tox
It looks like conda install is not thread-safe. https://stackoverflow.com/a/58228286
conda install
Are there any workarounds for this? Is this a conda problem? Or maybe just user error?
conda
The text was updated successfully, but these errors were encountered:
You might be able to get around this by installing the dependencies before running the tests in parallel. e.g.,
tox --notest tox -p auto
Sorry, something went wrong.
Looks like this workaround works. Thanks!
No branches or pull requests
It seems like there are consistent
InvalidArchiveError
's when attempting to runtox-conda
in parallel on Jenkins similar to the waytox
advises it to be set up. As shown here: https://tox.readthedocs.io/en/latest/example/jenkins.html#running-tox-environments-in-parallelIt looks like
conda install
is not thread-safe. https://stackoverflow.com/a/58228286Are there any workarounds for this? Is this a
conda
problem? Or maybe just user error?The text was updated successfully, but these errors were encountered: