Skip to content

Commit

Permalink
Mark two package tests with xfail (#4407)
Browse files Browse the repository at this point in the history
  • Loading branch information
beeankha authored Mar 24, 2022
1 parent 195a4ac commit cd9c775
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
2 changes: 2 additions & 0 deletions tests/test_api_render.py
Original file line number Diff line number Diff line change
Expand Up @@ -112,6 +112,8 @@ def test_pin_compatible_semver(testing_config):
utils.on_win and sys.version_info < (3, 6),
reason="Failing tests on Azure for Python 2.7"
)
@pytest.mark.xfail(sys.platform == "win32",
reason="Defaults channel has conflicting vc packages")
def test_resolved_packages_recipe(testing_config):
recipe_dir = os.path.join(metadata_dir, '_resolved_packages_host_build')
metadata = api.render(recipe_dir, config=testing_config)[0][0]
Expand Down
2 changes: 2 additions & 0 deletions tests/test_subpackages.py
Original file line number Diff line number Diff line change
Expand Up @@ -302,6 +302,8 @@ def test_python_line_up_with_compiled_lib(recipe, testing_config):
assert any(dep.startswith('python >') for dep in deps), (m.name(), deps)


@pytest.mark.xfail(sys.platform == "win32",
reason="Defaults channel has conflicting vc packages")
def test_merge_build_host_applies_in_outputs(testing_config):
recipe = os.path.join(subpackage_dir, '_merge_build_host')
ms = api.render(recipe, config=testing_config)
Expand Down

0 comments on commit cd9c775

Please sign in to comment.