From 0d56d11103cd244dcaf270a8208378cacd0fc27c Mon Sep 17 00:00:00 2001 From: jaimergp Date: Tue, 7 Nov 2023 12:07:39 +0100 Subject: [PATCH] mark unicode_all_over as xfail --- tests/test_api_build.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tests/test_api_build.py b/tests/test_api_build.py index c3059f066d..999ec3e34b 100644 --- a/tests/test_api_build.py +++ b/tests/test_api_build.py @@ -30,6 +30,7 @@ from conda_build.conda_interface import ( CondaError, LinkError, + context, cc_conda_build, reset_context, url_path, @@ -123,6 +124,9 @@ def test_recipe_builds( # ``source_setup_py_data_subdir`` reproduces the problem. if recipe.name == "source_setup_py_data_subdir": pytest.xfail("Issue related to #3754 on conda-build.") + elif recipe.name == "unicode_all_over" and context.solver == "libmamba": + pytest.xfail("Unicode package names not supported in libmamba.") + # These variables are defined solely for testing purposes, # so they can be checked within build scripts testing_config.activate = True