viirya commented on code in PR #8009:
URL: https://github.com/apache/arrow-rs/pull/8009#discussion_r2236676096
##########
.github/workflows/arrow.yml:
##########
@@ -68,7 +68,10 @@ jobs:
- name: Test arrow-schema
run: cargo test -p arrow-schema --all-features
- name: Test arrow-array
- run: cargo test -p arrow-array --all-features
+ run: |
+ cargo test -p arrow-array --all-features
+ # Disable feature `force_validate`
+ cargo test -p arrow-array
Review Comment:
Some tests are only run if `force_validate` is not enabled, I found that we
don't run these tests in CI. Might be a problem if we silently break them. I
enabled them here.
--
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]