Ruy Rocha
Ruy Rocha
@tpope do I need to cover anything else in order to get this merged?
Is this still an issue? I'm afraid I got no errors while running the integration tests: ```shell ~/G/httpi (main)> bundle exec rspec spec/integration/ Randomized with seed 46340 ....D, [2024-07-16T00:40:12.827309 #50113]...
@pcai yep, you're right. [This comment](https://github.com/ruby-grape/grape/issues/2294#issuecomment-1361912115) has more context on why it was removed, and looks like the upgrade path is to fallback to basic auth. Are you OK with...
It's the [expected behavior](https://github.com/rails/rails/blob/main/activerecord/lib/active_record/associations.rb#L1357), as there's one associated record. Try something like this: ```ruby class BugTest < Minitest::Test def test_unset_association_before_destroy chart = ChartDashboardElement.create!(chart_configurator: ChartConfigurator.create!) chart.update!(chart_configurator_id: nil) chart.destroy! assert_equal 0, ChartDashboardElement.all.count...
Howdy guys, tests were fixed on https://github.com/rails/rails/pull/55148, and that PR is ready for reviews.
@zzak I'm a little bit skeptical on closing #55148. We're seeing inconsistent test behavior where integration tests pass and individual tests fail; the root cause seems to be duplicate adapter...
@JesseChavez I cannot reproduce the error using the `7-1-stable` branch, e.g; ```ruby gemfile(true) do source "https://rubygems.org" gem "rails", github: "rails/rails", branch: "7-1-stable" gem "pg" end ``` And output: ```rspec D,...
@JesseChavez give it a try: ```ruby gemfile(true) do source "https://rubygems.org" gem "rails", "~> 7.1" # gem "rails", "7.1.3.4" # gem "rails", path: "~/GitHub/rails/" # gem "rails", github: "rails/rails", branch: "7-1-stable"...
It seems there's some flakiness there: ``` Fetching gem metadata from https://rubygems.org/........... Resolving dependencies... -- create_table("fields", {:force=>:cascade}) -> 0.0033s -- create_table("posts", {:force=>:cascade}) -> 0.0001s -- create_table("post_values", {:force=>:cascade}) -> 0.0003s Run...