~andrewjbeach/juju-ci-tools/get-juju-dict

« back to all changes in this revision

Viewing changes to quickstart_deploy.py

Handle LoggedException in quickstart_deploy, assess_bootstrap.

Show diffs side-by-side

added added

removed removed

Lines of Context:
9
9
from utility import (
10
10
    add_basic_testing_arguments,
11
11
    configure_logging,
 
12
    LoggedException,
12
13
)
13
14
 
14
15
 
71
72
        bs_manager, args.bundle_path, args.service_count)
72
73
    try:
73
74
        quickstart.run()
 
75
    except LoggedException:
 
76
        sys.exit(1)
74
77
    except Exception as e:
75
78
        print('%s (%s)' % (e, type(e).__name__))
76
79
        sys.exit(1)