Adding manylinux2010_i686 image and simplifying tests' utils.expected_wheels()

This commit is contained in:
Yannick Jadoul
2019-10-16 01:15:09 +02:00
parent c6f1382813
commit 2e0dc40e3f
5 changed files with 36 additions and 36 deletions
+2 -1
View File
@@ -15,6 +15,7 @@ def test():
})
# also check that we got the right wheels built
expected_wheels = utils.expected_wheels('spam', '0.1.0')
expected_wheels = [w for w in utils.expected_wheels('spam', '0.1.0')
if '-manylinux2010_i686' not in w]
actual_wheels = os.listdir('wheelhouse')
assert set(actual_wheels) == set(expected_wheels)