Removed superfluous bin/start_tests.sh script.

This commit is contained in:
Kevin Klues
2017-06-28 21:17:16 -07:00
parent c499d98be6
commit cb4a60931e

View File

@@ -1,24 +0,0 @@
#!/bin/bash -x
# This script expects the following env vars:
# DCOS_URL
# DCOS_CONFIG (this path will be overwritten)
# CLI_TEST_SSH_KEY_PATH (path to cluster ssh key)
# CLI_TEST_MASTER_PROXY (true or false, depending on if DCOS_URL points to an AWS cluster)
#
# CWD is assumed to be the dcos-cli repo root
make clean env
source env/bin/activate
make || exit $?
deactivate
# Move down to the dcoscli package
cd cli
cp tests/data/dcos.toml $DCOS_CONFIG
make clean env
source env/bin/activate
make || exit $?
deactivate