-
Notifications
You must be signed in to change notification settings - Fork 17
feat: add Rails example with Bazel integration #258
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
- Add Rails test setup section explaining rails_test.bzl configuration - Reorganize sections with Bazel testing first - Clarify Rails command usage for development tasks - Add note about Bazel managing gems (no bundle install needed) - Improve wording and fix file path references 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <[email protected]>
Add clarification that tests use SQLite in-memory database for fast, isolated test execution in the Rails example documentation. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <[email protected]>
|
@p0deje Gentle ping for a code review. |
p0deje
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Amazing, thank you for putting all that to work!
|
|
||
| # Use the Bazel binary specified by the integration test. Otherise, fall back | ||
| # to bazel. | ||
| bazel="${BIT_BAZEL_BINARY:-bazel}" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Out of curiosity, why do we need this? I've never encountered BIT before.
| ) | ||
|
|
||
| bazel_dep( | ||
| name = "bazel_env.bzl", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
TIL, I will see how to use it to make IDE integrations easier in other projcts.
Summary
Changes
rails_test.bzlmacros for model/controller and system tests🤖 Generated with Claude Code