mirror of https://github.com/mamba-org/mamba.git
Fixed test_repoquery after yaml rebuild (#4035)
This commit is contained in:
parent
28cf27362b
commit
d5c2a83932
|
@ -30,7 +30,7 @@ def test_depends_local(yaml_env: Path):
|
|||
assert any(x["version"] == "0.2.5" for x in pkgs)
|
||||
|
||||
if platform.system() == "Linux":
|
||||
assert any(x["name"] == "libgcc-ng" for x in pkgs)
|
||||
assert any(x["name"] == "libgcc" for x in pkgs)
|
||||
|
||||
|
||||
@pytest.mark.parametrize("shared_pkgs_dirs", [True], indirect=True)
|
||||
|
@ -53,7 +53,7 @@ def test_depends_remote(yaml_env: Path):
|
|||
assert any(x["version"] == "0.2.5" for x in pkgs)
|
||||
|
||||
if platform.system() == "Linux":
|
||||
assert any(x["name"] == "libgcc-ng" for x in pkgs)
|
||||
assert any(x["name"] == "libgcc" for x in pkgs)
|
||||
|
||||
|
||||
@pytest.mark.parametrize("shared_pkgs_dirs", [True], indirect=True)
|
||||
|
|
Loading…
Reference in New Issue