github.com/juju/juju@v0.0.0-20240430160146-1752b71fcf00/tests/suites/deploy/task.sh (about)

     1  test_deploy() {
     2  	if [ "$(skip 'test_deploy')" ]; then
     3  		echo "==> TEST SKIPPED: Deploy tests"
     4  		return
     5  	fi
     6  
     7  	set_verbosity
     8  
     9  	echo "==> Checking for dependencies"
    10  	check_dependencies juju
    11  
    12  	file="${TEST_DIR}/test-deploy-ctl.log"
    13  
    14  	bootstrap "test-deploy-ctl" "${file}"
    15  
    16  	test_deploy_charms
    17  	test_deploy_bundles
    18  	test_cmr_bundles_export_overlay
    19  	test_deploy_os
    20  	test_deploy_revision
    21  	test_deploy_default_series
    22  
    23  	destroy_controller "test-deploy-ctl"
    24  }