Files
skopeo/hack/make/test-integration
Antonio Murdaca c2b6a42855 validate scripts in container
Signed-off-by: Antonio Murdaca <runcom@redhat.com>
2016-01-24 12:27:53 +01:00

16 lines
278 B
Bash
Executable File

#!/bin/bash
set -e
bundle_test_integration() {
TESTFLAGS="$TESTFLAGS -check.v"
go_test_dir ./integration
}
# subshell so that we can export PATH without breaking other things
(
make binary
make install-binary
export GO15VENDOREXPERIMENT=1
bundle_test_integration
) 2>&1