~sseman/juju-ci-tools/model-change-watcher-py3-2

« back to all changes in this revision

Viewing changes to substrate.py

  • Committer: Leo Zhang
  • Date: 2016-07-27 14:09:51 UTC
  • mfrom: (1477.2.13 assess_multi_users)
  • Revision ID: leo.zhang@canonical.com-20160727140951-4axv0rqxveurlsrq
Add multi-users tests

Show diffs side-by-side

added added

removed removed

Lines of Context:
658
658
    ami = get_ami.query_ami(series, "amd64", region=region)
659
659
    command = [
660
660
        'euca-run-instances', '-k', 'id_rsa', '-n', '%d' % count,
661
 
        '-t', 'm3.large', '-g', 'manual-juju-test', ami]
 
661
        '-t', 'm1.large', '-g', 'manual-juju-test', ami]
662
662
    run_output = subprocess.check_output(command, env=environ).strip()
663
663
    machine_ids = dict(parse_euca(run_output)).keys()
664
664
    for remaining in until_timeout(300):