We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8b5fee7 commit c0ea244Copy full SHA for c0ea244
travis/script/predicate_functions.sh
@@ -62,6 +62,11 @@ function rspec_support_compatible {
62
fi
63
}
64
65
+function additional_specs_available {
66
+ type run_additional_specs > /dev/null 2>&1
67
+ return $?
68
+}
69
+
70
function documentation_enforced {
71
if [ -x ./bin/yard ]; then
72
if is_mri_2plus; then
travis/script/run_build
@@ -10,6 +10,11 @@ fi
10
fold "binstub check" check_binstubs
11
12
fold "specs" run_specs_and_record_done
13
14
+if additional_specs_available; then
15
+ fold "additional specs" run_additional_specs
16
+fi
17
18
fold "cukes" run_cukes
19
20
if documentation_enforced; then
0 commit comments