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.
2 parents fc2ed90 + bc09eae commit 203e893Copy full SHA for 203e893
script/predicate_functions.sh
@@ -33,15 +33,15 @@ function is_mri_192 {
33
fi
34
}
35
36
-function is_mri_193 {
+function is_not_mri_193 {
37
if is_mri; then
38
if ruby -e "exit(RUBY_VERSION == '1.9.3')"; then
39
- return 0
40
- else
41
return 1
+ else
+ return 0
42
43
else
44
- return 1
45
46
47
script/run_build
@@ -31,8 +31,10 @@ fi
31
32
# As of 2019-09-24 this causes a huge log due to a cicular dependency
# disable for now
- if !is_mri_193; then
+ if is_not_mri_193; then
fold "one-by-one specs" run_specs_one_by_one
+ echo "Skipping one-by-one specs due to issue on 1.9.3"
run_all_spec_suites
0 commit comments