Skip to content

Commit

Permalink
Temporarily disable tests using conda --json output
Browse files Browse the repository at this point in the history
  • Loading branch information
mathbunnyru committed Jul 28, 2023
1 parent 4b2a473 commit bc938c5
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions tests/base-notebook/test_packages.py
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand All @@ -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],
Expand Down

0 comments on commit bc938c5

Please sign in to comment.