Disabled failing test (#3062)

This commit is contained in:
Johan Mabille 2023-12-14 10:54:59 +01:00 committed by GitHub
parent 72d5eb1895
commit 7709425155
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 0 deletions

View File

@ -1,4 +1,5 @@
import os
import sys
import platform
import shutil
import subprocess
@ -65,6 +66,7 @@ class TestRemove:
assert p["name"] in env_pkgs
assert res["actions"]["PREFIX"] == TestRemove.prefix
@pytest.mark.skipif(sys.platform == "win32", reason="This test is currently failing on Windows")
def test_remove_orphaned(self, env_created):
env_pkgs = [p["name"] for p in helpers.umamba_list("-p", TestRemove.prefix, "--json")]
helpers.install("xframe", "-n", TestRemove.env_name, no_dry_run=True)