Skip to content

Commit

Permalink
Revert "Revert "skip a failing test on osx""
Browse files Browse the repository at this point in the history
This reverts commit f3b2ecc.
  • Loading branch information
h-vetinari committed Dec 21, 2021
1 parent 735b0fa commit 8fdf2df
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion recipe/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,9 @@ requirements:
{% set tests_to_skip = "_not_a_real_test" %}
# Seems to fail with current version of glibc for large numbers
# https://github.com/numpy/numpy/issues/15179
{% set tests_to_skip = tests_to_skip + " or test_sincos_float32" %} # [linux64]
{% set tests_to_skip = tests_to_skip + " or test_sincos_float32" %} # [linux64]
# failure to raise FloatingPointError on osx for reciprocal
{% set tests_to_skip = tests_to_skip + " or test_unary_PyUFunc_O_O_method_full[reciprocal]" %} # [osx]
# there are some tests that cannot really work in emulation, see e.g. numpy/numpy#20445
{% set tests_to_skip = tests_to_skip + " or TestF77Mismatch" %} # [build_platform != target_platform]
{% set tests_to_skip = tests_to_skip + " or Test_ARM_Features" %} # [build_platform != target_platform]
Expand Down

0 comments on commit 8fdf2df

Please sign in to comment.