Skip to content

Commit f49b0da

Browse files
committed
[tl-tests] flake8 fixes
1 parent 8647f7b commit f49b0da

3 files changed

Lines changed: 12 additions & 3 deletions

File tree

tests/api/__init__.py

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
2+
# -*- coding: utf-8 -*-
3+
"""package tests.api
4+
Created on 2018-07-06
5+
6+
@author: netzulo
7+
"""
8+
9+
10+
__all__ = []

tests/api/suite_connection.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
33

44

55
import pytest
6-
from testlinktests.core.utils import settings
76
from qatestlink.core.exceptions.response_exception import ResponseException
87
from qatestlink.core.testlink_manager import TLManager
8+
from testlinktests.core.utils import settings
99

1010

1111
CONFIG = settings(
@@ -19,7 +19,6 @@ class TestMethods(object):
1919

2020
def setup_method(self, test_method, **kwargs):
2121
"""TODO: doc method"""
22-
2322
if 'skipIf' in dir(test_method) and test_method.skipIf.args[0]:
2423
pytest.skip(test_method.skipIf.args[1])
2524
return

tests/api/suite_tprojects.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
33

44

55
import pytest
6-
from testlinktests.core.utils import settings
76
from qatestlink.core.exceptions.response_exception import ResponseException
87
from qatestlink.core.testlink_manager import TLManager
8+
from testlinktests.core.utils import settings
99

1010

1111
CONFIG = settings(

0 commit comments

Comments
 (0)