Stack
Ruby 2.3.3, Rails 5.0.2, minitest-ci 3.2.0
Failure
The ci-dir command line option that gets passed to my tests was causing them to fail in the same way as described here. Basically, the option gets rejected by minitest in Rails 5.
I’ve now tried to work around this by doing
override:
- bundle exec rails test:
parallel: true
files:
- test/**/*_test.rb
But that means that all my tests run on both nodes, so I lose the benefits of parallelism.
Am I doing something wrong here, or does CircleCI not support Rails 5? Thanks for your help.