Sha256: 5f94117c8ecc5890ff023619633e3505bb3c0f6fea0e10d1614db7e40e82ac17

Contents?: true

Size: 392 Bytes

Versions: 1

Compression:

Stored size: 392 Bytes

Contents

#!/bin/bash

set -evx

# Don't run acceptance tests on forks. The decryption keys are not available.
if [ "${CHEF_ACCEPTANCE}" = "true" ] && [ "${TRAVIS_REPO_SLUG}" = "chef/mixlib-install" ]; then
  # setup acceptance tests
  cd acceptance
  export BUNDLE_GEMFILE=$PWD/Gemfile
  bundle install
  # run acceptances tests and force cleanup
  bundle exec chef-acceptance test --force-destroy
fi

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
mixlib-install-2.1.6 ci/run-acceptance-tests.sh