From 7e729fae0f37a1618a45bfc3badb855ff1eff726 Mon Sep 17 00:00:00 2001 From: "H. Vetinari" Date: Wed, 6 Apr 2022 15:36:06 +1100 Subject: [PATCH] skip test suite on PPC due to QEMU bugs --- recipe/meta.yaml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/recipe/meta.yaml b/recipe/meta.yaml index f407c54e..de93743a 100644 --- a/recipe/meta.yaml +++ b/recipe/meta.yaml @@ -75,7 +75,9 @@ test: # https://github.com/numpy/numpy/blob/maintenance/1.20.x/numpy/_pytesttester.py#L93-L94 {% set param = "verbose=1, label='full', tests=None" %} {% set extra = "extra_argv=['-k', 'not (" + tests_to_skip + ")', '-nauto', '--timeout=600', '--durations=50']" %} - - python -c "import numpy, sys; sys.exit(not numpy.test({{ param }}, {{ extra }}))" + - python -c "import numpy, sys; sys.exit(not numpy.test({{ param }}, {{ extra }}))" # [not ppc64le] + # NOTE: test suite is skipped on ppc due to bugs in QEMU code that cause + # CI to fail, even though the tests would run through on native hardware imports: - numpy - numpy.core.multiarray