~openstack-charmers-archive/charms/trusty/nova-compute/next

« back to all changes in this revision

Viewing changes to tests/020-basic-trusty-liberty

  • Committer: Liam Young
  • Date: 2015-10-19 06:38:16 UTC
  • mfrom: (174.1.4 nova-compute)
  • Revision ID: liam.young@canonical.com-20151019063816-5h92ti22rv015wng
[1chb1n, r=gnuoy] Update amulet tests for Vivid-Kilo, Trusty-Liberty, prep for Wily-Liberty.

Add new logic to wait for extended status message to confirm deploy is ready, before testing.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/usr/bin/python
 
2
 
 
3
"""Amulet tests on a basic nova compute deployment on trusty-liberty."""
 
4
 
 
5
from basic_deployment import NovaBasicDeployment
 
6
 
 
7
if __name__ == '__main__':
 
8
    deployment = NovaBasicDeployment(series='trusty',
 
9
                                     openstack='cloud:trusty-liberty',
 
10
                                     source='cloud:trusty-updates/liberty')
 
11
    deployment.run_tests()