-
-
Notifications
You must be signed in to change notification settings - Fork 327
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
(dumb) Fix for Rails4 #256
(dumb) Fix for Rails4 #256
Conversation
Removes minitest stuff from `rails/test_help` and vendors it. Updates gemspec to allow versions of rails greater than 3. Works for me™
Turns out for the Rails app's i've tried you don't need these lines at all. Given we're relying on spinning up the app via rack-test.
Revert "Merge pull request #256 from JonRowe/dumb_fix_for_rails4_test_he...
Travis test fail when merged with master so had to revert it back |
What was the build failure? |
The build is still failing after reverting this suggesting it was anecdotal. |
Travis logs the build is broken due to some postgres migration? |
Most of the failures were about: undefined local variable or method `postgresql_version' for #ActiveRecord::ConnectionAdapters::SQLite3Adapter:0x000000038ee088 (NameError) Will try and have a look, but basically the build was passing, I've merged the request as it was passing the the build, the new build was failing, so I thought I revert it to restore the previous working version. Will try and get a fresh copy of master into my localhost and see what happens from there. |
Thanks for the attention to this @Kosmas |
@Kosmas, the 'postgresql_version' problem that you're seeing is likely due to a broken version of database_cleaner: DatabaseCleaner/database_cleaner#224 You can work around it by pinning database cleaner to version 1.0.1 until a fixed version is released. |
Removes minitest stuff fromrails/test_help
and vendors it.Updates gemspec to allow versions of rails greater than 3.
Works for me™
Edit It seems like you don't need the integration helpers at all on Rails 4...