-
Notifications
You must be signed in to change notification settings - Fork 27
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
Avoid booting Rails to generate timestamp #152
Conversation
@@ -11,7 +11,9 @@ namespace :test_track do | |||
end | |||
|
|||
desc 'Generates build timestamp for fetching point-in-time split registries' | |||
task generate_build_timestamp: :environment do | |||
task :generate_build_timestamp do # rubocop:disable Rails/RakeEnvironment | |||
require_relative '../../app/models/testtrack_cli' |
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.
it's small potatoes, but i'm wondering if we should move this class to lib
since it's funky to require files that are in the app
directory
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.
Agreed 👍
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.
domainlgtm
just wanna move that file
Invalidated by push of e53714e
e53714e
to
3b10a82
Compare
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.
domainlgtm platformlgtm
Summary
The
test_track:generate_build_timestamp
task currently depends on the Rails:environment
task. Because this task just shells out to the CLI, this dependency really shouldn't be necessary and can add a significant overhead for applications that don't rely on the Rails environment to precompile assets.Other Information
/domain @Betterment/test_track_core
/platform @Betterment/test_track_core