Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

tests: xfail test_pip_install_no_binary on Python 3.7 #406

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions tests/integration/test_pep517.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
from __future__ import annotations

import sys

from pathlib import Path
from typing import TYPE_CHECKING

Expand Down Expand Up @@ -75,6 +77,12 @@ def test_pip_wheel_build(temporary_directory: Path, project_source_root: Path) -
assert len(wheels) == 1


@pytest.mark.xfail(
sys.version_info < (3, 8),
# see https://github.com/python/importlib_metadata/issues/392
reason="importlib-metadata can't be installed with --no-binary anymore",
strict=True,
)
def test_pip_install_no_binary(python: str, project_source_root: Path) -> None:
subprocess_run(
python,
Expand Down