13 lines
444 B
Python
Executable File
13 lines
444 B
Python
Executable File
#!/usr/bin/python
|
|
|
|
"""Amulet tests on a basic Glance git deployment on trusty-juno."""
|
|
|
|
from basic_deployment import GlanceBasicDeployment
|
|
|
|
if __name__ == '__main__':
|
|
deployment = GlanceBasicDeployment(series='trusty',
|
|
openstack='cloud:trusty-juno',
|
|
source='cloud:trusty-updates/juno',
|
|
git=True)
|
|
deployment.run_tests()
|