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 2622771 commit 1f80145Copy full SHA for 1f80145
Rakefile
@@ -68,13 +68,5 @@ rescue LoadError
68
task(coverage: :spec)
69
end
70
71
-default_tasks =
72
- if ENV.fetch("CI", "false").casecmp?("false")
73
- # Open coverage in browser locally
74
- %i[coverage rubocop_gradual:autocorrect yard yard:junk]
75
- else
76
- # Run coverage, but do not open in browser, in CI
77
- %i[spec rubocop_gradual:check yard yard:junk]
78
- end
79
-
80
-task default: default_tasks
+# coverage task will open coverage in browser locally
+task default: %i[coverage rubocop_gradual:autocorrect yard yard:junk]
0 commit comments