From fdb9d3e6ea40df0160a10bc8c0f2e686f6a4fe52 Mon Sep 17 00:00:00 2001 From: Alex Kavanagh Date: Tue, 18 Feb 2020 16:18:14 +0000 Subject: [PATCH] Remove disco support from the charm Remove defunct cosmic test as cosmic is EOL. Change-Id: I390457fdbe94ed758537dc887fb7e80fff7a9f4b --- metadata.yaml | 1 - tests/dev-basic-cosmic-rocky | 23 ----------------------- tests/dev-basic-disco-stein | 23 ----------------------- 3 files changed, 47 deletions(-) delete mode 100755 tests/dev-basic-cosmic-rocky delete mode 100755 tests/dev-basic-disco-stein diff --git a/metadata.yaml b/metadata.yaml index 2cf42b1d..a34422df 100644 --- a/metadata.yaml +++ b/metadata.yaml @@ -14,7 +14,6 @@ series: - xenial - bionic - eoan - - disco - trusty provides: cloud-compute: diff --git a/tests/dev-basic-cosmic-rocky b/tests/dev-basic-cosmic-rocky deleted file mode 100755 index 6ad3ee22..00000000 --- a/tests/dev-basic-cosmic-rocky +++ /dev/null @@ -1,23 +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 nova compute deployment on cosmic-rocky.""" - -from basic_deployment import NovaBasicDeployment - -if __name__ == '__main__': - deployment = NovaBasicDeployment(series='cosmic') - deployment.run_tests() diff --git a/tests/dev-basic-disco-stein b/tests/dev-basic-disco-stein deleted file mode 100755 index 2f525a9b..00000000 --- a/tests/dev-basic-disco-stein +++ /dev/null @@ -1,23 +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 nova compute deployment on disco-stein.""" - -from basic_deployment import NovaBasicDeployment - -if __name__ == '__main__': - deployment = NovaBasicDeployment(series='disco') - deployment.run_tests()