Add missing function call, which causing tests to be skipped

(maybe types are not such a bad idea...)
This commit is contained in:
Joe Rickerby
2020-03-07 14:15:09 +00:00
parent 54fda3f965
commit e06b7696a0
@@ -12,7 +12,7 @@ def test(manylinux_image):
if utils.platform != 'linux':
pytest.skip('the docker test is only relevant to the linux build')
elif platform.machine not in ['x86_64', 'i686']:
elif platform.machine() not in ['x86_64', 'i686']:
if manylinux_image in ['manylinux1', 'manylinux2010']:
pytest.skip("manylinux1 and 2010 doesn't exist for non-x86 architectures")