Skip to content

Commit

Permalink
mark new tests as xfail
Browse files Browse the repository at this point in the history
  • Loading branch information
ytausch committed Jul 19, 2024
1 parent c74ce39 commit 11e3523
Showing 1 changed file with 20 additions and 4 deletions.
24 changes: 20 additions & 4 deletions tests/test_version_migrator.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,10 @@

YAML_PATH = os.path.join(os.path.dirname(__file__), "test_yaml")

VARIANT_SOURCES_NOT_IMPLEMENTED = (
"Sources that depend on conda build config variants are not supported yet."
)


@pytest.mark.parametrize(
"case,new_ver",
Expand Down Expand Up @@ -50,10 +54,22 @@
("libevent", "2.1.12"),
("boost", "1.74.0"),
("boostcpp", "1.74.0"),
# these contains sources that depend on conda build config variants
("polars_mixed_selectors", "1.1.0"),
("polars_name_selectors", "1.1.0"),
("polars_variant_selectors", "1.1.0"),
# these contain sources that depend on conda build config variants
pytest.param(
"polars_mixed_selectors",
"1.1.0",
marks=pytest.mark.xfail(reason=VARIANT_SOURCES_NOT_IMPLEMENTED),
),
pytest.param(
"polars_name_selectors",
"1.1.0",
marks=pytest.mark.xfail(reason=VARIANT_SOURCES_NOT_IMPLEMENTED),
),
pytest.param(
"polars_variant_selectors",
"1.1.0",
marks=pytest.mark.xfail(reason=VARIANT_SOURCES_NOT_IMPLEMENTED),
),
# upstream is not available
# ("mumps", "5.2.1"),
# ("cb3multi", "6.0.0"),
Expand Down

0 comments on commit 11e3523

Please sign in to comment.