parallelized_specs 0.4.56 → 0.4.57
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/Rakefile +1 -1
- data/lib/parallelized_specs.rb +4 -4
- data/parallelized_specs.gemspec +1 -1
- metadata +1 -1
data/Rakefile
CHANGED
@@ -12,7 +12,7 @@ begin
|
|
12
12
|
gem.email = "jake@instructure.com"
|
13
13
|
gem.homepage = "http://github.com/jakesorce/#{gem.name}"
|
14
14
|
gem.authors = "Jake Sorce, Bryan Madsen, Shawn Meredith"
|
15
|
-
gem.version = "0.4.
|
15
|
+
gem.version = "0.4.57"
|
16
16
|
end
|
17
17
|
Jeweler::GemcutterTasks.new
|
18
18
|
rescue LoadError
|
data/lib/parallelized_specs.rb
CHANGED
@@ -116,7 +116,7 @@ class ParallelizedSpecs
|
|
116
116
|
|
117
117
|
results = find_results(test_results.map { |result| result[:stdout] }*"")
|
118
118
|
|
119
|
-
|
119
|
+
if @outcome_builder_enabled
|
120
120
|
puts "INFO: OutcomeBuilder is enabled now checking for false positives"
|
121
121
|
@total_specs, @total_failures, @total_pending = calculate_total_spec_details
|
122
122
|
puts "INFO: Total specs run #{@total_specs} failed specs #{@total_failures} pending specs #{@total_pending}\n INFO: Took #{Time.now - start} seconds"
|
@@ -170,10 +170,10 @@ class ParallelizedSpecs
|
|
170
170
|
|
171
171
|
def self.directory_cleanup_and_create(dir)
|
172
172
|
if File.directory?(dir)
|
173
|
-
|
174
|
-
|
173
|
+
`rm -rf #{dir} && mkdir #{dir}`
|
174
|
+
|
175
175
|
else
|
176
|
-
|
176
|
+
`mkdir #{dir}`
|
177
177
|
end
|
178
178
|
end
|
179
179
|
|
data/parallelized_specs.gemspec
CHANGED
@@ -5,7 +5,7 @@
|
|
5
5
|
|
6
6
|
Gem::Specification.new do |s|
|
7
7
|
s.name = "parallelized_specs"
|
8
|
-
s.version = "0.4.
|
8
|
+
s.version = "0.4.57"
|
9
9
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
11
11
|
s.authors = ["Jake Sorce, Bryan Madsen, Shawn Meredith"]
|