mirror of
https://github.com/krkn-chaos/krkn.git
synced 2026-03-27 13:57:14 +00:00
Some checks failed
Functional & Unit Tests / Functional & Unit Tests (push) Failing after 1s
Functional & Unit Tests / Generate Coverage Badge (push) Has been skipped
Signed-off-by: Paige Patton <prubenda@redhat.com>
19 lines
520 B
Bash
Executable File
19 lines
520 B
Bash
Executable File
uset -xeEo pipefail
|
|
|
|
source CI/tests/common.sh
|
|
|
|
trap error ERR
|
|
trap finish EXIT
|
|
|
|
function functional_test_node_stop_start {
|
|
export scenario_type="node_scenarios"
|
|
export scenario_file="scenarios/kind/node_scenarios_example.yml"
|
|
export post_config=""
|
|
envsubst < CI/config/common_test_config.yaml > CI/config/node_config.yaml
|
|
cat CI/config/node_config.yaml
|
|
python3 -m coverage run -a run_kraken.py -c CI/config/node_config.yaml
|
|
echo "Node Stop/Start scenario test: Success"
|
|
}
|
|
|
|
functional_test_node_stop_start
|