remove base test that never run
Project: http://git-wip-us.apache.org/repos/asf/libcloud/repo Commit: http://git-wip-us.apache.org/repos/asf/libcloud/commit/cc6812d6 Tree: http://git-wip-us.apache.org/repos/asf/libcloud/tree/cc6812d6 Diff: http://git-wip-us.apache.org/repos/asf/libcloud/diff/cc6812d6 Branch: refs/heads/trunk Commit: cc6812d69d5dd0421e0b787cb7cde3c7e897275a Parents: 9d3e026 Author: Anthony Shaw <anthonys...@apache.org> Authored: Fri May 5 15:23:50 2017 +1000 Committer: Anthony Shaw <anthonys...@apache.org> Committed: Fri May 5 15:23:50 2017 +1000 ---------------------------------------------------------------------- libcloud/test/backup/test_base.py | 29 ----------------------------- libcloud/test/container/test_base.py | 29 ----------------------------- 2 files changed, 58 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/libcloud/blob/cc6812d6/libcloud/test/backup/test_base.py ---------------------------------------------------------------------- diff --git a/libcloud/test/backup/test_base.py b/libcloud/test/backup/test_base.py deleted file mode 100644 index e254e6d..0000000 --- a/libcloud/test/backup/test_base.py +++ /dev/null @@ -1,29 +0,0 @@ -# Licensed to the Apache Software Foundation (ASF) under one or more -# contributor license agreements. See the NOTICE file distributed with -# this work for additional information regarding copyright ownership. -# The ASF licenses this file to You 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 - -from __future__ import with_statement - -import sys - -from libcloud.test import unittest -from libcloud.backup.base import BackupDriver - - -class BaseTestCase(unittest.TestCase): - def setUp(self): - self.driver = BackupDriver('none', 'none') - - -if __name__ == '__main__': - sys.exit(unittest.main()) http://git-wip-us.apache.org/repos/asf/libcloud/blob/cc6812d6/libcloud/test/container/test_base.py ---------------------------------------------------------------------- diff --git a/libcloud/test/container/test_base.py b/libcloud/test/container/test_base.py deleted file mode 100644 index e34cb3c..0000000 --- a/libcloud/test/container/test_base.py +++ /dev/null @@ -1,29 +0,0 @@ -# Licensed to the Apache Software Foundation (ASF) under one or more -# contributor license agreements. See the NOTICE file distributed with -# this work for additional information regarding copyright ownership. -# The ASF licenses this file to You 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 - -from __future__ import with_statement - -import sys - -from libcloud.test import unittest -from libcloud.container.base import ContainerDriver - - -class BaseTestCase(unittest.TestCase): - def setUp(self): - self.driver = ContainerDriver('none', 'none') - - -if __name__ == '__main__': - sys.exit(unittest.main())