
This patches removes unnecessary utf-8 encoding in tempest/api/orchestration/stacks/test_swift_resources.py tempest/tests/lib/test_tempest_lib.py doc/source/conf.py releasenotes/source/conf.py For tempest/api/baremetal/admin/test_chassis.py ==> Still need the encoding for Non-ASCII characters in the file Change-Id: I2e1bff1f64dfe08f40562fa51e08a8ba25c9c3ae
27 lines
755 B
Python
27 lines
755 B
Python
# 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.
|
|
|
|
"""
|
|
test_tempest.lib
|
|
----------------------------------
|
|
|
|
Tests for `tempest.lib` module.
|
|
"""
|
|
|
|
from tempest.tests import base
|
|
|
|
|
|
class TestTempest_lib(base.TestCase):
|
|
|
|
def test_something(self):
|
|
pass
|