Skip to content

Commit 7c03161

Browse files
committed
Temporarily disable tests using conda --json output
1 parent bfe5f20 commit 7c03161

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

tests/base-notebook/test_packages.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -168,6 +168,9 @@ def r_packages(packages: dict[str, set[str]]) -> Iterable[str]:
168168
)
169169

170170

171+
@pytest.mark.skip(
172+
reason="conda 23.7.2 contains regression fix for --json and --debug flags, but it's not yet released on conda-forge"
173+
)
171174
def test_r_packages(
172175
package_helper: CondaPackageHelper, r_packages: Iterable[str]
173176
) -> None:
@@ -181,6 +184,9 @@ def python_packages(packages: dict[str, set[str]]) -> Iterable[str]:
181184
return map(get_package_import_name, filter(python_package_predicate, packages))
182185

183186

187+
@pytest.mark.skip(
188+
reason="conda 23.7.2 contains regression fix for --json and --debug flags, but it's not yet released on conda-forge"
189+
)
184190
def test_python_packages(
185191
package_helper: CondaPackageHelper,
186192
python_packages: Iterable[str],

0 commit comments

Comments
 (0)