rspec_flake 0.2.0 → 0.2.1
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.
- checksums.yaml +4 -4
- data/lib/rspec_flake/rspec_flake.rb +1 -1
- data/lib/rspec_flake/version.rb +1 -1
- data/readme.md +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ed857e80459ce1e50e95c6bd6ac83a8ecc15b42a
|
4
|
+
data.tar.gz: 075763584abb6c5a46ac12d853d9cdaf3ac19174
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e707512c0e6d51f15b82dd2d7584777c14a063b28b41f546fdd448147b9dea99f42637541c3efd1695dbd01e9866d6b24e8a084bbd73ac041754ba56ab2c6663
|
7
|
+
data.tar.gz: a8a32dedfd853a3c0e4819b78ca379ce81a8cce7aa056e37b8284a2b83e24e16f6af54af014c6731acc5bc757a76932eb41682ac4528040cb64a7943653ac164
|
@@ -18,7 +18,7 @@ module RSpecFlake
|
|
18
18
|
count.times do |iteration|
|
19
19
|
out_file = File.expand_path File.join(tmp_path, iteration.to_s + '.xml')
|
20
20
|
xml_files << out_file
|
21
|
-
spawn_command = %Q(
|
21
|
+
spawn_command = %Q(#{command} --format JUnit --out "#{out_file}")
|
22
22
|
puts "Running: #{spawn_command}"
|
23
23
|
Process::waitpid(POSIX::Spawn::spawn(spawn_command))
|
24
24
|
end
|
data/lib/rspec_flake/version.rb
CHANGED
data/readme.md
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
#### rspec_flake [](https://travis-ci.org/bootstraponline/rspec_flake)
|
1
|
+
#### rspec_flake [](http://badge.fury.io/rb/rspec_flake)[](https://travis-ci.org/bootstraponline/rspec_flake)
|
2
2
|
|
3
3
|
Measure RSpec test flakiness
|
4
4
|
|