Conversation
Tests are failing with this output:
```
expected "-----> Building on the Heroku-24 stack\n-----> Fetching https://github.com/heroku/heroku-buildpack-r...: rake test\n505b817aba132559e51bfc599fe8a1c7\n-----> Ruby buildpack tests completed successfully\n" to match "Using rake"
Diff:
@@ -1 +1,89 @@
-Using rake
+-----> Building on the Heroku-24 stack
+-----> Fetching https://github.com/heroku/heroku-buildpack-ruby.git#main buildpack...
+ buildpack downloaded
+-----> Ruby app detected
+-----> Installing bundler 2.3.25
+-----> Removing BUNDLED WITH version in the Gemfile.lock
+-----> Setting up Test for Ruby/Rack
...
+-----> Installing dependencies using bundler 2.3.25
+ Running: BUNDLE_WITHOUT='development' BUNDLE_PATH=vendor/bundle BUNDLE_BIN=vendor/bundle/bin BUNDLE_DEPLOYMENT=1 bundle install -j4
+ Bundle complete! 2 Gemfile dependencies, 3 gems now installed.
+ Gems in the group 'development' were not installed.
+ Bundled gems are installed into `./vendor/bundle`
+ Bundle completed (0.45s)
+ Cleaning up the bundler cache.
```
Bundler changed their output. They no longer emit gems that are already installed. I changed the default bundler version used when none is specified from bundler 1.x to 2.3.x so that's why this is failing now.
We are asserting that "Installing rake" is seen in the first build and not in the second build already. The goal was to show that caching is working. This line is not needed.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Tests are failing with this output:
Bundler changed their output. They no longer emit gems that are already installed. I changed the default bundler version used when none is specified from bundler 1.x to 2.3.x so that's why this is failing now.
We are asserting that "Installing rake" is seen in the first build and not in the second build already. The goal was to show that caching is working. This line is not needed.