1
0
mirror of https://github.com/rancher/os.git synced 2025-08-31 22:32:14 +00:00

Skip integration tests in release

This commit is contained in:
Darren Shepherd
2016-06-28 21:41:40 -07:00
parent ddff0d3e6f
commit dd4f348592
2 changed files with 5 additions and 0 deletions

View File

@@ -2,6 +2,10 @@
# help: Run Python based integration tests
set -e
if [ "$INTEGRATION_TESTS" = 0 ]; then
exit 0
fi
source $(dirname $0)/version
cd $(dirname $0)/../tests/integration

View File

@@ -4,5 +4,6 @@ set -e
source $(dirname $0)/version
export REPO_VERSION=$VERSION
export COMPRESS=lzma
export INTEGRATION_TESTS=0
exec $(dirname $0)/ci