diff options
author | Cédric Ollivier <cedric.ollivier@orange.com> | 2019-07-26 12:58:04 +0200 |
---|---|---|
committer | Cédric Ollivier <cedric.ollivier@orange.com> | 2019-07-26 16:03:59 +0200 |
commit | 7b24ea8dfe1667fe00b87cac9f0a0ca670b6a86f (patch) | |
tree | 026ee9db8c5b5b1385439317a03e461570a85af8 /xtesting/core | |
parent | 5dd0d0ffd46e7665fddde8fd2f4da1a9b58506bb (diff) |
Switch to Python 3.7 and Alpine 3.10
It also allows building docs as doc8 is broken due to latest
OpenStack's upper-constraints.
pylint is updated to 2.3.1 (lastest py3.7 version)
It disables perm as umask is currently false on lf-virtual1.
Change-Id: I8568eeafa44c5dba72e206c532c1f50e3ad547f2
Signed-off-by: Cédric Ollivier <cedric.ollivier@orange.com>
Diffstat (limited to 'xtesting/core')
-rw-r--r-- | xtesting/core/testcase.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xtesting/core/testcase.py b/xtesting/core/testcase.py index c548a2a8..c89e4c88 100644 --- a/xtesting/core/testcase.py +++ b/xtesting/core/testcase.py @@ -27,7 +27,7 @@ __author__ = "Cedric Ollivier <cedric.ollivier@orange.com>" @six.add_metaclass(abc.ABCMeta) -class TestCase(object): +class TestCase(): # pylint: disable=too-many-instance-attributes """Base model for single test case.""" |