Files
library-charts/run_common_tests.sh
Stavros kois 29b4b81e3d add first test
2022-11-09 00:42:07 +02:00

11 lines
184 B
Bash
Executable File

#!/bin/bash
curr_dir=${pwd}
common_test_path=library/common-test
helm dependency build "$common_test_path"
cd "$common_test_path"
helm unittest -f "tests/*/*.yaml" .
cd "$curr_dir"