-
Notifications
You must be signed in to change notification settings - Fork 376
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
Create empty base prefix with env update
#3519
Conversation
micromamba/tests/test_env.py
Outdated
@@ -307,6 +307,7 @@ def test_env_update_conda_forge_with_pypi(tmp_home, tmp_root_prefix, tmp_path): | |||
channels: | |||
- conda-forge | |||
dependencies: | |||
- python 3.10 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is to fix the CI test failure due to some known issues with python 3.11
and pip
.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think that it can now be removed since #3537 has been merged.
""" | ||
|
||
|
||
def test_install_empty_base(tmp_home, tmp_root_prefix, tmp_path): |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Such a test was missing, i.e test creation of a valid environment with install
when target prefix is the root prefix.
micromamba/tests/test_env.py
Outdated
@@ -307,6 +307,7 @@ def test_env_update_conda_forge_with_pypi(tmp_home, tmp_root_prefix, tmp_path): | |||
channels: | |||
- conda-forge | |||
dependencies: | |||
- python 3.10 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think that it can now be removed since #3537 has been merged.
Fix #3515