Files
krkn/CI/tests/test_time.sh
Paige RubendallandGitHub f17ad062cf Ci tests (#184)
* Adding in working ci tests

* spacing in readme
2021-11-24 15:12:47 -05:00

20 lines
444 B
Bash
Executable File

set -xeEo pipefail
source CI/tests/common.sh
trap error ERR
trap finish EXIT
function functional_test_time_scenario {
export scenario_type="time_scenarios"
export scenario_file="CI/scenarios/time_scenarios.yml"
export post_config=""
envsubst < CI/config/common_test_config.yaml > CI/config/time_config.yaml
python3 run_kraken.py -c CI/config/time_config.yaml
echo "Time scenario test: Success"
}
functional_test_time_scenario