You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In 2fa18ac I made the following change:
-require 'test/unit'
+require 'minitest/unit'
This had the unintended consequence of running the test suite twice!
(Even weirder, that *only* happened on 1.9.2 and JRuby in 1.9 mode o_O)
Since the tests don't presently clean up after themselves or initialize
Redis into a clean state, this broke the build because the second test
run would fail.
Tenderlove recommened replacing the existing wonky at_exit handler with
a proper MiniTest::Unit.after_test hook and it fixed the problem. Plus
it's waaaay less wonky ;)
0 commit comments