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

disable micromamba tests on windows #443

Merged
merged 1 commit into from
Jun 28, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions tests/test_conda_lock.py
Original file line number Diff line number Diff line change
Expand Up @@ -316,6 +316,7 @@ def include_dev_dependencies(request: Any) -> bool:
)
def _conda_exe_type(request: Any) -> str:
"Internal fixture to iterate over"

return request.param


Expand All @@ -328,6 +329,10 @@ def conda_exe(_conda_exe_type: str) -> PathLike:
conda=False,
conda_exe=False,
)
if platform.system().lower() == "windows":
if _conda_exe_type == "micromamba":
pytest.skip(reason="micromamba tests are failing on windows")

kwargs[_conda_exe_type] = True
_conda_exe = _ensureconda(**kwargs)

Expand Down