From bc938c50dcad95002eeb5be6c8fd2cd111554ded Mon Sep 17 00:00:00 2001 From: Ayaz Salikhov Date: Fri, 28 Jul 2023 12:06:40 +0400 Subject: [PATCH] Temporarily disable tests using conda --json output --- tests/base-notebook/test_packages.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/tests/base-notebook/test_packages.py b/tests/base-notebook/test_packages.py index b56d6120e..9f6fef905 100644 --- a/tests/base-notebook/test_packages.py +++ b/tests/base-notebook/test_packages.py @@ -168,6 +168,9 @@ def r_packages(packages: dict[str, set[str]]) -> Iterable[str]: ) +@pytest.mark.skip( + reason="conda 23.7.2 contains regression fix for --json and --debug flags, but it's not yet released on conda-forge" +) def test_r_packages( package_helper: CondaPackageHelper, r_packages: Iterable[str] ) -> None: @@ -181,6 +184,9 @@ def python_packages(packages: dict[str, set[str]]) -> Iterable[str]: return map(get_package_import_name, filter(python_package_predicate, packages)) +@pytest.mark.skip( + reason="conda 23.7.2 contains regression fix for --json and --debug flags, but it's not yet released on conda-forge" +) def test_python_packages( package_helper: CondaPackageHelper, python_packages: Iterable[str],