Skip to content
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

Gives formatter deprecation warning when using zeus #23

Open
brandoncc opened this issue Jan 13, 2015 · 2 comments
Open

Gives formatter deprecation warning when using zeus #23

brandoncc opened this issue Jan 13, 2015 · 2 comments

Comments

@brandoncc
Copy link

When running specs via zeus the specs are run using the default progress formatter and the deprecation warning is shown, saying I need to use the legacy formatters gem. If I run my specs using rspec directly, I do not have this issue.

@vlad-shatskyi
Copy link

I have the same issue with spring.

@aeberlin
Copy link

Also seeing this issue via a rake task which invokes parallel_tests.

# lib/tasks/custom_parallel_tests_for_rspec.rake

require "parallel_tests"

namespace :rspec do
  desc 'Run custom parallel_tests with serialized output'
  task :parallel => :environment do
    default_options = [
      '-n', '8',
      '--serialize-stdout',
      '--combine-stderr',
      'spec/'
    ]

    ParallelTests::CLI.new.run(["--type", "rspec"] + default_options)
  end
end

The same warning can be observed by running bundle exec rake rspec:parallel with the above task.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants