mirror of
https://github.com/truecharts/library-charts.git
synced 2026-07-03 03:39:14 -03:00
11 lines
184 B
Bash
Executable File
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"
|