Skip to content

Commit

Permalink
Add test skip for risky test on osx
Browse files Browse the repository at this point in the history
  • Loading branch information
h-vetinari authored Sep 25, 2023
1 parent 7c0b94f commit 68bf65c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion dev/tasks/conda-recipes/arrow-cpp/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -377,7 +377,8 @@ outputs:
{% set tests_to_skip = tests_to_skip + " or test_cuda" %}
# skip tests that raise SIGINT and crash the test suite
{% set tests_to_skip = tests_to_skip + " or (test_csv and test_cancellation)" %} # [linux]
{% set tests_to_skip = tests_to_skip + " or (test_flight and test_interrupt)" %} # [linux]
# skip test that intentionally writes out of bounds and then expects no error message
{% set tests_to_skip = tests_to_skip + " or test_debug_memory_pool_disabled[system_memory_pool]" %} # [osx]
# skip tests that make invalid(-for-conda) assumptions about the compilers setup
{% set tests_to_skip = tests_to_skip + " or test_cython_api" %} # [unix]
{% set tests_to_skip = tests_to_skip + " or test_visit_strings" %} # [unix]
Expand Down

0 comments on commit 68bf65c

Please sign in to comment.