Skip to content

Commit

Permalink
remove redundant reassignments in tests_to_skip
Browse files Browse the repository at this point in the history
  • Loading branch information
h-vetinari committed Jun 30, 2021
1 parent 2a6f3c2 commit a0f2954
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions recipe/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -36,22 +36,22 @@ 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]
# https://github.com/numpy/numpy/issues/15243
{% set tests_to_skip = tests_to_skip + " or test_loss_of_precision[complex256]" %} # [ppc64le]
{% set tests_to_skip = tests_to_skip + " or test_loss_of_precision[complex256]" %} # [ppc64le]
# Probably needs too much memory on ppc64le, it sometimes fails on travis
{% set tests_to_skip = tests_to_skip + " or test_large_archive" %} # [ppc64le]
{% set tests_to_skip = tests_to_skip + " or test_big_arrays" %} # [ppc64le]
{% set tests_to_skip = tests_to_skip + " or test_large_archive or test_big_arrays" %} # [ppc64le]
# the following skips are the longest running tests at time of writing; all over 45sec, up to 750sec
# skipping is done purely to stop pypy jobs from regularly timing out on drone/travis
{% if (aarch64 or ppc64le) and (python_impl == "pypy") %}
{% set tests_to_skip = tests_to_skip + " or test_may_share_memory_easy_fuzz or test_may_share_memory_harder_fuzz" %}
{% set tests_to_skip = tests_to_skip + " or test_binary_ufunc_1d_manual or test_diophantine_fuzz" %}
{% set tests_to_skip = tests_to_skip + " or test_unary_ufunc_call_fuzz or test_unary_gufunc_fuzz" %}
{% set tests_to_skip = tests_to_skip + " or test_big_arrays or test_large_archive or test_large_zip" %}
{% set tests_to_skip = tests_to_skip + " or test_closing_fid or test_iter_buffered_reduce_reuse" %}
{% set tests_to_skip = tests_to_skip + " or test_count_nonzero_all or test_divmod_128_64" %}
{% set tests_to_skip = tests_to_skip + " or (test_generalized_sq_cases and (TestCond or TestDet or TestInv or TestSolve))" %}
{% set tests_to_skip = tests_to_skip + " or test_may_share_memory_easy_fuzz or test_may_share_memory_harder_fuzz"
+ " or test_binary_ufunc_1d_manual or test_diophantine_fuzz"
+ " or test_unary_ufunc_call_fuzz or test_unary_gufunc_fuzz"
+ " or test_big_arrays or test_large_archive or test_large_zip"
+ " or test_closing_fid or test_iter_buffered_reduce_reuse"
+ " or test_count_nonzero_all or test_divmod_128_64"
+ " or (test_generalized_sq_cases "
+ " and (TestCond or TestDet or TestInv or TestSolve))" %}
{% endif %}

test:
Expand Down

0 comments on commit a0f2954

Please sign in to comment.