Skip to content

Commit

Permalink
only run full test suite for one python version when in emulation
Browse files Browse the repository at this point in the history
  • Loading branch information
h-vetinari committed Jun 16, 2023
1 parent 94277be commit 5fcdef5
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions recipe/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -401,7 +401,12 @@ outputs:
{% set tests_to_skip = tests_to_skip + " or test_total_bytes_allocated " %} # [linux]
{% set tests_to_skip = tests_to_skip + " or test_feather_format " %} # [linux]
# ^^^^^^^ TESTS THAT SHOULDN'T HAVE TO BE SKIPPED ^^^^^^^
{% if not (aarch64 or ppc64le) or py == 311 %}
# only run the full test suite for one python version when in emulation (each run takes ~45min);
# there's essentially zero divergence in behaviour across python versions anyway, and otherwise
# CUDA builds for aarch/ppc consistently would run out of disk space on azure for some reason
- pytest -rfEs -k "not ({{ tests_to_skip }})"
{% endif %}

about:
home: http://github.com/apache/arrow
Expand Down

0 comments on commit 5fcdef5

Please sign in to comment.