From e06b7696a0bf0f4ae618558b29071508fa248e8e Mon Sep 17 00:00:00 2001 From: Joe Rickerby Date: Sat, 7 Mar 2020 14:13:56 +0000 Subject: [PATCH] Add missing function call, which causing tests to be skipped (maybe types are not such a bad idea...) --- test/08_manylinuxXXXX_only/cibuildwheel_test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/08_manylinuxXXXX_only/cibuildwheel_test.py b/test/08_manylinuxXXXX_only/cibuildwheel_test.py index 9abdc129..2c20441d 100644 --- a/test/08_manylinuxXXXX_only/cibuildwheel_test.py +++ b/test/08_manylinuxXXXX_only/cibuildwheel_test.py @@ -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")