From 392fe3b7c34e0b3b01e57ab2135d4404075b1827 Mon Sep 17 00:00:00 2001 From: Julien Jerphanion Date: Wed, 26 Feb 2025 12:24:29 +0100 Subject: [PATCH] fix: Temporarily skip `test_pip_git_https_lockfile` (#3838) Signed-off-by: Julien Jerphanion --- micromamba/tests/test_create.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/micromamba/tests/test_create.py b/micromamba/tests/test_create.py index dd897c83b..915548727 100644 --- a/micromamba/tests/test_create.py +++ b/micromamba/tests/test_create.py @@ -164,6 +164,9 @@ def test_lockfile_with_pip(tmp_home, tmp_root_prefix, tmp_path): ) +# TODO: Remove this test once this is fixed: +# https://github.com/dateutil/dateutil/issues/1419 +@pytest.mark.skip(reason="See https://github.com/mamba-org/mamba/pull/3796#issuecomment-2683061013") @pytest.mark.skipif( platform.system() not in ["Darwin", "Linux"], reason="Used lockfile only handles macOS and Linux.",