parallelized_specs 0.3.25 → 0.3.26

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 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.25"
15
+ gem.version = "0.3.26"
16
16
  end
17
17
  Jeweler::GemcutterTasks.new
18
18
  rescue LoadError
@@ -44,14 +44,19 @@ namespace :parallel do
44
44
  end
45
45
 
46
46
  desc "run spec in parallel with parallel:spec[num_cpus]"
47
- task 'spec', :count, :pattern, :options, :arguments do |t, args|
48
- count, pattern = ParallelizedSpecs.parse_rake_args(args)
49
- opts = {:count => count, :pattern => pattern, :root => Rails.root, :files => args[:arguments]}
50
- ParallelizedSpecs.execute_parallel_specs(opts)
47
+ task 'spec', :count, :pattern, :options, :arguments do |t, args|
48
+ count, pattern = ParallelizedSpecs.parse_rake_args(args)
49
+ opts = {:count => count, :pattern => pattern, :root => Rails.root, :files => args[:arguments]}
50
+ exit_result = ParallelizedSpecs.execute_parallel_specs(opts)
51
+
52
+ puts "#{exit_result}" >> "/tmp/exit_code.log"
53
+ puts "going to check for reruns"
54
+
55
+ if $? != 0 && FileTest.exist?("#{RAILS_ROOT}/tmp/parallel_log/rspec.failures")
56
+ ParallelizedSpecs.rerun()
57
+ else
58
+ abort "#{exit_result}"
51
59
  end
52
60
 
53
- desc "reruns all the failed specs in 1 thread"
54
- task 'rerun' do
55
- ParallelizedSpecs.rerun()
56
61
  end
57
62
  end
@@ -308,9 +308,9 @@ class ParallelizedSpecs
308
308
  end
309
309
  end
310
310
  end
311
- else
312
- "No errors file was found, marking build as a success"
313
- exit(0)
314
- end
311
+ else
312
+ "No errors file was found, marking build as a success"
313
+ exit(0)
315
314
  end
315
+ end
316
316
 
@@ -5,7 +5,7 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = "parallelized_specs"
8
- s.version = "0.3.25"
8
+ s.version = "0.3.26"
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"]
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: 33
4
+ hash: 39
5
5
  prerelease:
6
6
  segments:
7
7
  - 0
8
8
  - 3
9
- - 25
10
- version: 0.3.25
9
+ - 26
10
+ version: 0.3.26
11
11
  platform: ruby
12
12
  authors:
13
13
  - Jake Sorce, Bryan Madsen, Shawn Meredith