This commit is contained in:
Ryan Beisner 2016-01-20 04:41:22 +00:00
commit baf4aa7dbe

View File

@ -1,11 +1,11 @@
#!/usr/bin/python #!/usr/bin/python
"""Amulet tests on a basic neutron-api deployment on trusty-liberty.""" """Amulet tests on a basic neutron-api deployment on trusty-mitaka."""
from basic_deployment import NeutronAPIBasicDeployment from basic_deployment import NeutronAPIBasicDeployment
if __name__ == '__main__': if __name__ == '__main__':
deployment = NeutronAPIBasicDeployment(series='trusty', deployment = NeutronAPIBasicDeployment(series='trusty',
openstack='cloud:trusty-liberty', openstack='cloud:trusty-mitaka',
source='cloud:trusty-updates/liberty') source='cloud:trusty-updates/mitaka')
deployment.run_tests() deployment.run_tests()