Sha256: f26b2b9e789079897c02b2e5f7a33621ff0975d4153dcc2900e7447269a13d20

Contents?: true

Size: 1.65 KB

Versions: 1

Compression:

Stored size: 1.65 KB

Contents

require "parallel_tests/test/runner"

module ParallelTests
  module RSpec
    class Runner < ParallelTests::Test::Runner
      NAME = 'RSpec'

      def self.run_tests(test_files, process_number, num_processes, options)
        exe = executable # expensive, so we cache
        version = (exe =~ /\brspec\b/ ? 2 : 1)
        cmd = "#{rspec_1_color if version == 1}#{exe} #{options[:test_options]} #{rspec_2_color if version == 2}#{spec_opts} #{test_files*' '}"
        execute_command(cmd, process_number, num_processes, options)
      end

      def self.executable
        cmd = if File.file?("script/spec")
          "script/spec"
        elsif ParallelTests.bundler_enabled?
          cmd = (run("bundle show rspec-core") =~ %r{Could not find gem.*} ? "spec" : "rspec")
          "bundle exec #{cmd}"
        else
          %w[spec rspec].detect{|cmd| system "#{cmd} --version > /dev/null 2>&1" }
        end
        cmd or raise("Can't find executables rspec or spec")
      end

      def self.runtime_log
        'tmp/parallel_runtime_rspec.log'
      end

      def self.test_file_name
        "spec"
      end

      def self.test_suffix
        "_spec.rb"
      end

      private

      # so it can be stubbed....
      def self.run(cmd)
        `#{cmd}`
      end

      def self.rspec_1_color
        'RSPEC_COLOR=1 ; export RSPEC_COLOR ;' if $stdout.tty?
      end

      def self.rspec_2_color
        '--color --tty ' if $stdout.tty?
      end

      def self.spec_opts
        options_file = ['.rspec_parallel', 'spec/parallel_spec.opts', 'spec/spec.opts'].detect{|f| File.file?(f) }
        return unless options_file
        "-O #{options_file}"
      end
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
parallel_tests-0.10.3 lib/parallel_tests/rspec/runner.rb