The tests/021-basic-xenial-mitaka amulet test was present but not enabled. This test now passes and can be enabled templates/.gitignore was added to workaround https://goo.gl/Je1Mm7 Change-Id: I8bfaa9bc3c2afb053e05216c8056955d354e4baa
10 lines
267 B
Python
Executable File
10 lines
267 B
Python
Executable File
#!/usr/bin/python
|
|
|
|
"""Amulet tests on a basic cinder-backup deployment on xenial-mitaka."""
|
|
|
|
from basic_deployment import CinderBackupBasicDeployment
|
|
|
|
if __name__ == '__main__':
|
|
deployment = CinderBackupBasicDeployment(series='xenial')
|
|
deployment.run_tests()
|