Add test for certs_install script

Add make ability for travis ci
This commit is contained in:
Sam Chow 2018-08-23 15:41:00 -04:00
parent 0681784012
commit dabad24cae
4 changed files with 80 additions and 0 deletions

View file

@ -69,6 +69,10 @@ registry_old() {
load_image && quay_run make registry-test-old
}
certs_test() {
load_image && quay_run make certs-test
}
mysql_ping() {
mysqladmin --connect-timeout=2 --wait=60 --host=127.0.0.1 \
@ -146,6 +150,10 @@ case "$1" in
registry_old
;;
certs_test)
certs_test
;;
mysql)
mysql
;;