DEV: lint a bunch of files we missed

This commit is contained in:
Sam Saffron 2019-06-21 11:33:41 +10:00
parent fc84e23b71
commit 5bc92296be
5 changed files with 29 additions and 16 deletions

View File

@ -1,5 +1,7 @@
# frozen_string_literal: true
task 'turbo:spec' => :test do |t|
require './lib/turbo_tests'
TurboTests::Runner.run([{name: 'progress', outputs: ['-']}], ['spec'])
TurboTests::Runner.run([{ name: 'progress', outputs: ['-'] }], ['spec'])
end

View File

@ -1,3 +1,5 @@
# frozen_string_literal: true
require 'open3'
require 'fileutils'
require 'json'

View File

@ -1,3 +1,5 @@
# frozen_string_literal: true
module TurboTests
# An RSpec formatter used for each subprocess during parallel test execution
class JsonRowsFormatter
@ -50,37 +52,37 @@ module TurboTests
end
def example_passed(notification)
output_row({
output_row(
type: :example_passed,
example: example_to_json(notification.example)
})
)
end
def example_pending(notification)
output_row({
output_row(
type: :example_pending,
example: example_to_json(notification.example)
})
)
end
def example_failed(notification)
output_row({
output_row(
type: :example_failed,
example: example_to_json(notification.example)
})
)
end
def seed(notification)
output_row({
output_row(
type: :seed,
seed: notification.seed,
})
)
end
def close(notification)
output_row({
output_row(
type: :close,
})
)
end
private

View File

@ -1,3 +1,5 @@
# frozen_string_literal: true
module TurboTests
class Reporter
def self.from_config(formatter_config, start_time)

View File

@ -1,6 +1,8 @@
# frozen_string_literal: true
module TurboTests
class Runner
def self.run(formatter_config, files, start_time=Time.now)
def self.run(formatter_config, files, start_time = Time.now)
reporter = Reporter.from_config(formatter_config, start_time)
new(reporter, files).run
@ -49,16 +51,19 @@ module TurboTests
def start_subprocess(tests, process_num)
if tests.empty?
@messages << {type: 'exit', process_num: process_num}
@messages << {
type: 'exit',
process_num: process_num
}
else
begin
File.mkfifo("tmp/test-pipes/subprocess-#{process_num}")
rescue Errno::EEXIST
end
stdin, stdout, stderr, wait_thr =
_stdin, stdout, stderr, _wait_thr =
Open3.popen3(
{'TEST_ENV_NUMBER' => process_num.to_s},
{ 'TEST_ENV_NUMBER' => process_num.to_s },
"bundle", "exec", "rspec",
"-f", "TurboTests::JsonRowsFormatter",
"-o", "tmp/test-pipes/subprocess-#{process_num}",
@ -76,7 +81,7 @@ module TurboTests
end
end
@messages << {type: 'exit', process_num: process_num}
@messages << { type: 'exit', process_num: process_num }
end
@threads << start_copy_thread(stdout, STDOUT)