Skip to content

Commit

Permalink
Merge pull request #207 from h-vetinari/time
Browse files Browse the repository at this point in the history
skip longest running tests for pypy on aarch
  • Loading branch information
h-vetinari authored Jul 26, 2022
2 parents dcb89d7 + 806829c commit f8a1a66
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions recipe/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,12 @@ requirements:
{% set tests_to_skip = tests_to_skip + " or test_cdist_refcount" %} # [python_impl == "pypy"]
# unclear why a warning isn't raised. Might be related to scipy/scipy#15121
{% set tests_to_skip = tests_to_skip + " or test_boost_eval_issue_14606" %} # [python_impl == "pypy"]
# very slow tests for pypy in emulation
{% set tests_to_skip = tests_to_skip + " or test_cont_basic[500" %} # [(python_impl == "pypy") and (aarch64 or ppc64le)]
{% set tests_to_skip = tests_to_skip + " or TestDifferentialEvolutionSolver" %} # [(python_impl == "pypy") and (aarch64 or ppc64le)]
{% set tests_to_skip = tests_to_skip + " or test_conditionally_positive_definite" %} # [(python_impl == "pypy") and (aarch64 or ppc64le)]
{% set tests_to_skip = tests_to_skip + " or (TestBrute and test_workers)" %} # [(python_impl == "pypy") and (aarch64 or ppc64le)]
{% set tests_to_skip = tests_to_skip + " or test_gh12922" %} # [(python_impl == "pypy") and (aarch64 or ppc64le)]

test:
requires:
Expand Down

0 comments on commit f8a1a66

Please sign in to comment.