Skip to content

Commit

Permalink
Remove machine condition for test
Browse files Browse the repository at this point in the history
  • Loading branch information
Hind-M committed Jun 5, 2024
1 parent 416896f commit 01d036a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions micromamba/tests/test_create.py
Original file line number Diff line number Diff line change
Expand Up @@ -1249,8 +1249,8 @@ def test_create_from_oci_mirrored_channels_pkg_name_mapping(
# This is to test Conda/OCI package name mapping
# Test fetching package from OCI registry with name starting with '_'
# Packages with such names are not common to all platforms
# So this test is only run with linux-64
if platform.system() != "Linux" or platform.machine() != "x86_64":
# So this test is only run on Linux
if platform.system() != "Linux":
return
env_name = "myenv"
env_prefix = tmp_root_prefix / "envs" / env_name
Expand Down

0 comments on commit 01d036a

Please sign in to comment.