Skip to content

Commit

Permalink
re-add a PPC-specific skip
Browse files Browse the repository at this point in the history
Had been removed in f946a5f
since failures at the time weren't being counted (missing
sys.exit wrapper), and once the wrapper was added in #250,
the test suite for PPC was disabled completely.
  • Loading branch information
h-vetinari committed Apr 11, 2022
1 parent ffd3fe8 commit c09691d
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions recipe/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,8 @@ requirements:
{% set tests_to_skip = "_not_a_real_test" %}
# https://github.com/numpy/numpy/issues/15243
{% set tests_to_skip = tests_to_skip + " or test_loss_of_precision[complex256]" %} # [ppc64le]
# Probably needs too much memory on ppc64le, it sometimes crashes on travis
{% set tests_to_skip = tests_to_skip + " or test_large_archive" %} # [ppc64le]
# there are some tests that cannot really work in emulation, see e.g. numpy/numpy#20445
{% set tests_to_skip = tests_to_skip + " or Test_ARM_Features" %} # [build_platform != target_platform]
# flaky refcount-based test; already skipped upstream for win+py39
Expand Down

0 comments on commit c09691d

Please sign in to comment.