2016-11-23 21:32:34 +00:00
|
|
|
#!/usr/bin/env python
|
2016-07-01 16:39:46 +00:00
|
|
|
#
|
|
|
|
# Copyright 2016 Canonical Ltd
|
|
|
|
#
|
|
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
# you may not use this file except in compliance with the License.
|
|
|
|
# You may obtain a copy of the License at
|
|
|
|
#
|
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
#
|
|
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
# See the License for the specific language governing permissions and
|
|
|
|
# limitations under the License.
|
2015-10-07 18:03:38 +00:00
|
|
|
|
|
|
|
"""Amulet tests on a basic nova cloud controller deployment on
|
2016-01-19 12:47:46 +00:00
|
|
|
trusty-mitaka."""
|
2015-10-07 18:03:38 +00:00
|
|
|
|
|
|
|
from basic_deployment import NovaCCBasicDeployment
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
deployment = NovaCCBasicDeployment(series='trusty',
|
2016-01-19 12:47:46 +00:00
|
|
|
openstack='cloud:trusty-mitaka',
|
|
|
|
source='cloud:trusty-updates/mitaka')
|
2015-10-07 18:03:38 +00:00
|
|
|
deployment.run_tests()
|