Sha256: d903080b390f865f07db3785bf2804fe163d95749bd8ec41d7bcbc8ef4821a38

Contents?: true

Size: 1.46 KB

Versions: 11

Compression:

Stored size: 1.46 KB

Contents

#
# Copyright 2016, Noah Kantrowitz
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#

require 'rake'
require 'rspec'
require 'rspec/its'
require 'simplecov'

# Check for coverage stuffs
formatters = []

if ENV['CODECOV_TOKEN'] || ENV['TRAVIS']
  require 'codecov'
  formatters << SimpleCov::Formatter::Codecov
end

unless formatters.empty?
  SimpleCov.formatters = formatters
end

SimpleCov.start do
  # Don't get coverage on the test cases themselves.
  add_filter '/spec/'
  add_filter '/test/'
  # Codecov doesn't automatically ignore vendored files.
  add_filter '/vendor/'
end

require 'kitchen/driver/docker'

RSpec.configure do |config|
  # Basic configuraiton
  config.run_all_when_everything_filtered = true
  config.filter_run(:focus)

  # Run specs in random order to surface order dependencies. If you find an
  # order dependency and want to debug it, you can fix the order by providing
  # the seed, which is printed after each run.
  #     --seed 1234
  config.order = 'random'
end

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
kitchen-docker-2.15.0 test/spec/spec_helper.rb
kitchen-docker-2.14.0 test/spec/spec_helper.rb
kitchen-docker-2.13.0 test/spec/spec_helper.rb
kitchen-docker-2.12.0 test/spec/spec_helper.rb
kitchen-docker-2.11.0 test/spec/spec_helper.rb
kitchen-docker-2.10.0 test/spec/spec_helper.rb
kitchen-docker-2.9.0 test/spec/spec_helper.rb
kitchen-docker-2.8.0 test/spec/spec_helper.rb
kitchen-docker-2.7.0 test/spec/spec_helper.rb
kitchen-docker-2.6.0 test/spec/spec_helper.rb
kitchen-docker-2.6.0.rc.0 test/spec/spec_helper.rb