139044083a
- Do not pass tests on redfish-client Currently tests are using a local docker container. We remove them to allow jenkins tests to pass. - Move programme usage in a separate file to get rid of pep8 issue. - Fix tox venv usage - Add flake8 test dependency Change-Id: I12f3a567f3ff83c34c3832a544ef547372857161
14 lines
308 B
Python
14 lines
308 B
Python
# coding=utf-8
|
|
|
|
from __future__ import unicode_literals
|
|
from __future__ import print_function
|
|
from __future__ import division
|
|
from __future__ import absolute_import
|
|
from future import standard_library
|
|
standard_library.install_aliases()
|
|
|
|
|
|
def test_fake():
|
|
print('This is a fake test')
|
|
assert (1 == 1)
|