spec/integration/spec_helper.rb in itamae-1.9.13 vs spec/integration/spec_helper.rb in itamae-1.10.0
- old
+ new
@@ -12,5 +12,12 @@
# Set environment variables
# set :env, :LANG => 'C', :LC_MESSAGES => 'C'
# Set PATH
# set :path, '/sbin:/usr/local/sbin:$PATH'
+
+RSpec.configure do |config|
+ unless ENV["CI"]
+ # focus is enabled only local (Run all specs at CI)
+ config.filter_run_when_matching :focus
+ end
+end