-
Notifications
You must be signed in to change notification settings - Fork 476
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
Update copier command in test-migrations.sh #2169
Conversation
Important Auto Review SkippedAuto reviews are disabled on this repository. Please check the settings in the CodeRabbit UI or the To trigger a single review, invoke the Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on X ? TipsChat with CodeRabbit Bot (
|
Co-authored-by: Andrei Vishniakov <[email protected]>
Co-authored-by: Andrei Vishniakov <[email protected]>
@@ -15,8 +15,7 @@ function run_tests_for_version() { | |||
# Initialize zenml with the appropriate template | |||
# hardcoded to 0.43.0 since this is the latest template-starter repo | |||
# release tag | |||
git clone -b "release/0.43.0" https://github.com/zenml-io/template-starter | |||
copier copy template-starter/ test_starter --trust --defaults | |||
copier copy --trust -l --trust -r release/0.43.0 https://github.com/zenml-io/template-starter.git test_starter |
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.
copier copy --trust -l --trust -r release/0.43.0 https://github.com/zenml-io/template-starter.git test_starter | |
copier copy -l --trust -r release/0.43.0 https://github.com/zenml-io/template-starter.git test_starter |
This pull request updates the copier command in the test-migrations.sh file to use the latest release tag of the template-starter repository. This ensures that the correct version of the template-starter is used when running the tests.