Skip to content

Commit 43e44c1

Browse files
author
d.kovalenko
committed
[hack] Do not use an indirect import
It creates unexpected problems with import of testgres.common on alpine (CI).
1 parent 839af1e commit 43e44c1

File tree

6 files changed

+8
-8
lines changed

6 files changed

+8
-8
lines changed

__init__.py

Whitespace-only changes.

tests/__init__.py

Whitespace-only changes.

tests/helpers/__init__.py

Whitespace-only changes.

tests/test_os_ops_common.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# coding: utf-8
2-
from .helpers.global_data import OsOpsDescr
3-
from .helpers.global_data import OsOpsDescrs
4-
from .helpers.global_data import OsOperations
5-
from .helpers.run_conditions import RunConditions
2+
from tests.helpers.global_data import OsOpsDescr
3+
from tests.helpers.global_data import OsOpsDescrs
4+
from tests.helpers.global_data import OsOperations
5+
from tests.helpers.run_conditions import RunConditions
66

77
import os
88

tests/test_os_ops_local.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# coding: utf-8
2-
from .helpers.global_data import OsOpsDescrs
3-
from .helpers.global_data import OsOperations
2+
from tests.helpers.global_data import OsOpsDescrs
3+
from tests.helpers.global_data import OsOperations
44

55
import os
66

tests/test_os_ops_remote.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# coding: utf-8
22

3-
from .helpers.global_data import OsOpsDescrs
4-
from .helpers.global_data import OsOperations
3+
from tests.helpers.global_data import OsOpsDescrs
4+
from tests.helpers.global_data import OsOperations
55

66
from src.exceptions import ExecUtilException
77

0 commit comments

Comments
 (0)