raulcd commented on code in PR #41904: URL: https://github.com/apache/arrow/pull/41904#discussion_r1700066336
########## python/pyarrow/tests/test_convert_builtin.py: ########## @@ -23,8 +23,12 @@ import re import hypothesis as h -import numpy as np import pytest +try: + import numpy as np +except ImportError: + pytest.skip(reason="Failures on test collection due to numpy NOT enabled", + allow_module_level=True) Review Comment: I've ended up adding the following commit: https://github.com/apache/arrow/pull/41904/commits/ef97ad314ba7b5990c0d580f923f715908e9db1a to remove the file skip and to individual markers per test. If you could take a look on that one. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
