Reverting to the official PyPy docker image

This commit is contained in:
Yannick Jadoul
2020-09-26 22:46:40 +02:00
parent b3a16d58cf
commit 6ef2f92dfc
2 changed files with 12 additions and 12 deletions
+2 -2
View File
@@ -69,9 +69,9 @@ def test_build_selector(platform, intercepted_build_args, monkeypatch):
('i686', 'manylinux2010', 'quay.io/pypa/manylinux2010_i686:*'),
('i686', 'manylinux2014', 'quay.io/pypa/manylinux2014_i686:*'),
('i686', 'custom_image', 'custom_image'),
('pypy_x86_64', None, 'yannickjadoul/manylinux2010-pypy_x86_64:*'),
('pypy_x86_64', None, 'pypywheels/manylinux2010-pypy_x86_64:*'),
('pypy_x86_64', 'manylinux1', 'manylinux1'), # Does not exist
('pypy_x86_64', 'manylinux2010', 'yannickjadoul/manylinux2010-pypy_x86_64:*'),
('pypy_x86_64', 'manylinux2010', 'pypywheels/manylinux2010-pypy_x86_64:*'),
('pypy_x86_64', 'manylinux2014', 'manylinux2014'), # Does not exist (yet)
('pypy_x86_64', 'custom_image', 'custom_image'),
])