Files
atlantis/scripts/e2e.sh
Anubhav Mishra c663be4247 Adding e2e tests back and upgrading terraform version 0.9.11 (#113)
* Adding e2e tests back and upgrading terraform version 0.9.11

* Fixing the binary name for e2e tests

* revert binary name change

* missed indentation for makefile

* use owner name for branch head for pull request creation
2017-08-10 21:17:50 -07:00

21 lines
316 B
Bash
Executable File

#!/usr/bin/env bash
set -euo pipefail
IFS=$'\n\t'
# Download dependencies
echo "Running 'make deps'"
make deps
# Run tests
echo "Running 'make test'"
make test
# Build packages to make sure they can be compiled
echo "Running 'make build'"
make build
# Run e2e tests
echo "Running e2e test: 'make run'"
make run