Merge "Enable bionic/stein and disco/stein functional tests"

This commit is contained in:
Zuul 2019-04-09 14:46:45 +00:00 committed by Gerrit Code Review
commit 1cedc2d756
2 changed files with 20 additions and 0 deletions

10
src/tests/dev-basic-disco-stein Executable file
View File

@ -0,0 +1,10 @@
#!/usr/bin/env python
"""Amulet tests on a basic manila deployment on disco-stein.
"""
from basic_deployment import ManilaBasicDeployment
if __name__ == '__main__':
deployment = ManilaBasicDeployment(series='disco')
deployment.run_tests()

View File

@ -0,0 +1,10 @@
#!/usr/bin/env python
"""Amulet tests on a basic manila deployment on bionic-stein.
"""
from basic_deployment import ManilaBasicDeployment
if __name__ == '__main__':
deployment = ManilaBasicDeployment(series='bionic')
deployment.run_tests()