diff --git a/meta/recipes-devtools/python/python3-numpy/run-ptest b/meta/recipes-devtools/python/python3-numpy/run-ptest index 6e76dffc59..a1c80323d6 100644 --- a/meta/recipes-devtools/python/python3-numpy/run-ptest +++ b/meta/recipes-devtools/python/python3-numpy/run-ptest @@ -11,5 +11,7 @@ mkdir -p "$PYTEST_DEBUG_TEMPROOT" # test_mem_policy fails if there's no C compiler present, but we don't want to # include gcc as a ptest dependency, so skip that. test_big_arrays uses up a # large amount of storage, so skip that too. -pytest --automake -m "not slow" -k "not test_mem_policy and not test_big_arrays" /usr/lib/python3.*/site-packages/numpy +# remove test_validate_transcendentals if +# https://github.com/numpy/numpy/issues/27460 is resolved +pytest --automake -m "not slow" -k "not test_mem_policy and not test_big_arrays and not test_validate_transcendentals" /usr/lib/python3.*/site-packages/numpy rm -rf "$PYTEST_DEBUG_TEMPROOT"