mirror of
https://github.com/k3s-io/k3s.git
synced 2026-02-03 20:39:49 -05:00
13 lines
146 B
Bash
Executable file
13 lines
146 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 $@
|