You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi, I am wondering if there are any methods to test my code without relying on GitHub actions? These actions are only run when I create a pull request, but I don't want to push corrupt code before creating PRs.
PS: I tried to run cargo test on my development machine (an Apple Silicon MacBook), but seems to me that a lot of symbols required to build the codebase were missing on Arm64. One thing I can do is to do my development in containers.
Update: Ok I just took a look at the GitHub Actions manifests and understood how to run tests.
PS: I tried to run cargo test on my development machine (an Apple Silicon MacBook), but seems to me that a lot of symbols required to build the codebase were missing on Arm64. One thing I can do is to do my development in containers.
cargo test on the top level requires to build all bindings, please try running inside core. And we can use cargo test azblob to only running azblob related tests.
Take #1739 for reference.
The text was updated successfully, but these errors were encountered: