mirror of
https://github.com/k3s-io/k3s.git
synced 2026-02-11 23:03:29 -05:00
* Move docker tests into tests folder * Remove old test certs * Update TESTING.md with docker test inf Signed-off-by: Derek Nola <derek.nola@suse.com>
13 lines
149 B
Bash
Executable file
13 lines
149 B
Bash
Executable file
#!/bin/bash
|
|
set -x -e
|
|
cd $(dirname $0)/../..
|
|
|
|
# ---
|
|
|
|
for include in $TEST_INCLUDES; do
|
|
. $include
|
|
done
|
|
|
|
test-setup
|
|
provision-cluster
|
|
start-test $@
|