Skip to content

Commit

Permalink
Xfail test_realistic_complex_sub_dependencies on PyPy under Windows (
Browse files Browse the repository at this point in the history
…#1489)

Co-authored-by: Sviatoslav Sydorenko <wk.cvs.github@sydorenko.org.ua>
Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
  • Loading branch information
3 people committed Sep 28, 2021
1 parent 8515b87 commit 4b3a673
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -97,8 +97,7 @@ jobs:
os:
- Ubuntu
- MacOS
# TODO: fix test_realistic_complex_sub_dependencies test on Windows
# - Windows
- Windows
python-version:
- pypy-3.7
pip-version:
Expand Down
3 changes: 1 addition & 2 deletions .github/workflows/cron.yml
Original file line number Diff line number Diff line change
Expand Up @@ -73,8 +73,7 @@ jobs:
os:
- Ubuntu
- MacOS
# TODO: fix test_realistic_complex_sub_dependencies test on Windows
# - Windows
- Windows
python-version:
- pypy3
pip-version:
Expand Down
4 changes: 4 additions & 0 deletions tests/test_cli_compile.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
from .constants import MINIMAL_WHEELS_PATH, PACKAGES_PATH

is_pypy = "__pypy__" in sys.builtin_module_names
is_windows = sys.platform == "win32"


@pytest.fixture(autouse=True)
Expand Down Expand Up @@ -348,6 +349,9 @@ def test_emit_index_url_option(runner, option, expected_output):


@pytest.mark.network
@pytest.mark.xfail(
is_pypy and is_windows, reason="https://github.com/jazzband/pip-tools/issues/1148"
)
def test_realistic_complex_sub_dependencies(runner):
wheels_dir = "wheels"

Expand Down

0 comments on commit 4b3a673

Please sign in to comment.