Skip to content
Closed
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
3 changes: 3 additions & 0 deletions tests/test_repoquery.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@
# SPDX-License-Identifier: BSD-3-Clause
import json

import pytest
from conda.common.compat import on_win
from conda.models.channel import Channel

from conda_libmamba_solver.index import LibMambaIndexHelper
Expand Down Expand Up @@ -50,6 +52,7 @@ def test_query_search():
)


@pytest.mark.xfail(on_win, reason="libmambapy bug https://github.com/mamba-org/mamba/issues/4286")
def test_query_search_includes_python_site_packages_path():
index = LibMambaIndexHelper(channels=[Channel("conda-forge")], subdirs=("linux-64", "noarch"))
results = index.search("python=3.13.2=h4724d56_1_cp313t")
Expand Down
Loading