Sha256: 5515f9776c06db8253bd65a3d7398f9bbc3cdf0028ed3a4679cd966deaec3150
Contents?: true
Size: 601 Bytes
Versions: 9
Compression:
Stored size: 601 Bytes
Contents
$LOAD_PATH << File.join(File.dirname(__FILE__), '..', 'lib') require 'simplecov' require 'aws-sdk-core' require 'multi_json' cfg = './integration-test-config.json' if File.exist?(cfg) Aws.config = MultiJson.load(File.read(cfg), symbolize_keys: true) elsif ENV['AWS_INTEGRATION'] # run integration tests, just don't read a configuration file from disk else msg = <<-MSG *** skipping integration tests *** To enable integration tests, create a #{cfg} file or export AWS_INTEGRATION=1 Please note, running integration tests requires AWS account credentials. MSG puts msg exit(0) end
Version data entries
9 entries across 9 versions & 1 rubygems