~andrewjbeach/juju-ci-tools/make-local-patcher

« back to all changes in this revision

Viewing changes to perfscale_deployment.py

  • Committer: Christopher Lee
  • Date: 2016-10-26 04:29:27 UTC
  • mto: This revision was merged to the branch mainline in revision 1698.
  • Revision ID: chris.lee@canonical.com-20161026042927-j3wf3tt7pjpr1ok6
Add handling of HA perfscale reporting.

Show diffs side-by-side

added added

removed removed

Lines of Context:
18
18
from generate_perfscale_results import (
19
19
    DeployDetails,
20
20
    TimingData,
 
21
    add_basic_perfscale_arguments,
21
22
    run_perfscale_test,
22
23
)
23
24
from utility import (
24
 
    add_basic_testing_arguments,
25
25
    configure_logging,
26
26
)
27
27
 
62
62
    """Parse all arguments."""
63
63
    parser = argparse.ArgumentParser(
64
64
        description="Perfscale bundle deployment test.")
65
 
    add_basic_testing_arguments(parser)
 
65
    add_basic_perfscale_arguments(parser)
66
66
    parser.add_argument(
67
67
        '--bundle-name',
68
68
        help='Bundle to deploy during test run.',