geordi 0.9.2 → 0.9.3
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/lib/geordi/cuc.rb +2 -2
- data/lib/geordi/version.rb +1 -1
- metadata +3 -3
data/lib/geordi/cuc.rb
CHANGED
|
@@ -39,7 +39,7 @@ module Geordi
|
|
|
39
39
|
def parallel_execution_command
|
|
40
40
|
puts "Using parallel_tests ...\n\n"
|
|
41
41
|
self.argv = argv - command_line_features
|
|
42
|
-
parallel_tests_args = "-t features #{command_line_features}"
|
|
42
|
+
parallel_tests_args = "-t features #{command_line_features.join(' ')}"
|
|
43
43
|
cucumber_args = argv.empty? ? '' : "-o '#{escape_shell_args(argv).join(" ")}'"
|
|
44
44
|
[use_firefox_for_selenium, 'b', 'parallel_test', parallel_tests_args, cucumber_args].flatten.compact.join(" ")
|
|
45
45
|
end
|
|
@@ -58,7 +58,7 @@ module Geordi
|
|
|
58
58
|
|
|
59
59
|
def show_features_to_run
|
|
60
60
|
unless features_to_run.empty?
|
|
61
|
-
passed_by = (features_to_run ==
|
|
61
|
+
passed_by = (features_to_run == command_line_features) ? 'command line' : 'rerun.txt'
|
|
62
62
|
2.times { puts }
|
|
63
63
|
puts "features to run (passed by #{passed_by}):"
|
|
64
64
|
puts "-----------------------------------------"
|
data/lib/geordi/version.rb
CHANGED
metadata
CHANGED