Remove disco support from the charm

And clean up the cosmic test and remove it as well.

Change-Id: Ibf02186ea5977839e16fe03a3267fe92b84d83b9
This commit is contained in:
Alex Kavanagh 2020-02-18 15:36:55 +00:00
parent 7b1a5ec19f
commit 5c84d88d73
4 changed files with 1 additions and 53 deletions

View File

@ -1,4 +1,4 @@
[gerrit]
host=review.opendev.org
port=29418
project=openstack/charm-lxd.git
project=openstack/charm-nova-lxd.git

View File

@ -9,8 +9,6 @@ tags:
series:
- xenial
- bionic
- cosmic
- disco
subordinate: true
peers:
lxd-migration:

View File

@ -1,25 +0,0 @@
#!/usr/bin/env python
#
# 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.
"""Amulet tests on a basic lxd deployment on cosmic-rocky."""
from basic_deployment import LXDBasicDeployment
if __name__ == '__main__':
deployment = LXDBasicDeployment(
series='cosmic', openstack=None, source=None,
stable=False)
deployment.run_tests()

View File

@ -1,25 +0,0 @@
#!/usr/bin/env python
#
# 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.
"""Amulet tests on a basic lxd deployment on disco-stein."""
from basic_deployment import LXDBasicDeployment
if __name__ == '__main__':
deployment = LXDBasicDeployment(
series='disco', openstack=None, source=None,
stable=False)
deployment.run_tests()