Skip to content

Commit

Permalink
Fix tests linked to manylinux2010_x86_64 usage for PyPy
Browse files Browse the repository at this point in the history
  • Loading branch information
mayeut committed May 23, 2021
1 parent 4eb183e commit 8f7755c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions unit_test/main_tests/main_options_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -81,9 +81,9 @@ def test_empty_selector(platform, intercepted_build_args, monkeypatch):
("i686", "manylinux2014", "quay.io/pypa/manylinux2014_i686:*"),
("i686", "manylinux_2_24", "quay.io/pypa/manylinux_2_24_i686:*"),
("i686", "custom_image", "custom_image"),
("pypy_x86_64", None, "yannickjadoul/manylinux2010-pypy_x86_64:*"),
("pypy_x86_64", None, "quay.io/pypa/manylinux2010_x86_64:*"),
("pypy_x86_64", "manylinux1", "manylinux1"), # Does not exist
("pypy_x86_64", "manylinux2010", "yannickjadoul/manylinux2010-pypy_x86_64:*"),
("pypy_x86_64", "manylinux2010", "quay.io/pypa/manylinux2010_x86_64:*"),
("pypy_x86_64", "manylinux2014", "manylinux2014"), # Does not exist (yet)
("pypy_x86_64", "custom_image", "custom_image"),
],
Expand Down

0 comments on commit 8f7755c

Please sign in to comment.