parallelized_specs 0.3.51 → 0.3.53
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 +19 -14
- data/lib/parallelized_specs/tasks.rb +0 -1
- data/parallelized_specs.gemspec +2 -2
- metadata +4 -4
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.3.
|
15
|
+
gem.version = "0.3.52"
|
16
16
|
end
|
17
17
|
Jeweler::GemcutterTasks.new
|
18
18
|
rescue LoadError
|
data/lib/parallelized_specs.rb
CHANGED
@@ -296,26 +296,31 @@ class ParallelizedSpecs
|
|
296
296
|
rerun_failed_examples = true
|
297
297
|
puts "#{l} will be ran and marked as a success if it passes"
|
298
298
|
|
299
|
-
result = %x[bundle exec rake spec #{l}]
|
299
|
+
result = %x[DISPLAY=:99 bundle exec rake spec #{l}]
|
300
|
+
|
301
|
+
puts "this is the result#{result}"
|
300
302
|
#can't just use exit code, if specs fail to start it will pass or if a spec isn't found, and sometimes rspec 1 exit codes aren't right
|
301
303
|
rerun_status = result.scan(/\d*[^\D]\d*/).to_a
|
302
|
-
|
303
|
-
|
304
|
-
|
304
|
+
puts "this is the rerun_status#{rerun_status}"
|
305
|
+
|
306
|
+
if rerun_status.length == 6
|
307
|
+
example_index = rerun_status.length - 2
|
308
|
+
@examples = rerun_status[example_index].to_i
|
309
|
+
@failures = rerun_status.last.to_i
|
305
310
|
else
|
306
311
|
abort "spec didn't actually run, ending rerun process early"
|
307
312
|
end
|
308
313
|
|
309
|
-
|
310
|
-
|
311
|
-
|
312
|
-
|
313
|
-
|
314
|
-
|
315
|
-
|
316
|
-
|
317
|
-
|
318
|
-
|
314
|
+
if @examples == 0 #when specs fail to run it exits with 0 examples, 0 failures and won't be matched by the previous regex
|
315
|
+
abort "the spec failed to run on the rerun try, marking build as failed"
|
316
|
+
elsif @failures > 0
|
317
|
+
puts "the example failed again"
|
318
|
+
@rerun_failures << l
|
319
|
+
elsif @examples > 0 && @failures == 0
|
320
|
+
puts "the example passed and is being marked as a success"
|
321
|
+
@rerun_passes << l
|
322
|
+
else
|
323
|
+
abort "unexpected outcome on the rerun, marking build as a failure"
|
319
324
|
end
|
320
325
|
rerun_status = ""
|
321
326
|
end #end file loop
|
data/parallelized_specs.gemspec
CHANGED
@@ -5,11 +5,11 @@
|
|
5
5
|
|
6
6
|
Gem::Specification.new do |s|
|
7
7
|
s.name = "parallelized_specs"
|
8
|
-
s.version = "0.3.
|
8
|
+
s.version = "0.3.53"
|
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"]
|
12
|
-
s.date = "2012-
|
12
|
+
s.date = "2012-12-04"
|
13
13
|
s.email = "jake@instructure.com"
|
14
14
|
s.files = [
|
15
15
|
"Gemfile",
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: parallelized_specs
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
4
|
+
hash: 121
|
5
5
|
prerelease:
|
6
6
|
segments:
|
7
7
|
- 0
|
8
8
|
- 3
|
9
|
-
-
|
10
|
-
version: 0.3.
|
9
|
+
- 53
|
10
|
+
version: 0.3.53
|
11
11
|
platform: ruby
|
12
12
|
authors:
|
13
13
|
- Jake Sorce, Bryan Madsen, Shawn Meredith
|
@@ -15,7 +15,7 @@ autorequire:
|
|
15
15
|
bindir: bin
|
16
16
|
cert_chain: []
|
17
17
|
|
18
|
-
date: 2012-
|
18
|
+
date: 2012-12-04 00:00:00 Z
|
19
19
|
dependencies:
|
20
20
|
- !ruby/object:Gem::Dependency
|
21
21
|
name: parallel
|