Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion tests/helpers/os_ops_helpers.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# coding: utf-8
from testgres.operations.local_ops import OsOperations
from testgres.operations.os_ops import OsOperations


class OsOpsHelpers:
Expand Down
16 changes: 8 additions & 8 deletions tests/test_os_ops_common.py
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
# coding: utf-8
from __future__ import annotations

from .helpers.global_data import OsOpsDescr
from .helpers.global_data import OsOpsDescrs
from .helpers.global_data import OsOperations
from .helpers.run_conditions import RunConditions
from .helpers.local_check import LocalCheck
from .helpers.local_check import OsOpsHelpers
from tests.helpers.global_data import OsOpsDescr
from tests.helpers.global_data import OsOpsDescrs
from tests.helpers.global_data import OsOperations
from tests.helpers.run_conditions import RunConditions
from tests.helpers.local_check import LocalCheck
from tests.helpers.local_check import OsOpsHelpers

import os
import sys
Expand All @@ -26,8 +26,8 @@
import threading
import queue

from src import InvalidOperationException
from src import ExecUtilException
from src.exceptions import InvalidOperationException
from src.exceptions import ExecUtilException

from concurrent.futures import ThreadPoolExecutor
from concurrent.futures import Future as ThreadFuture
Expand Down
6 changes: 3 additions & 3 deletions tests/test_os_ops_local.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# coding: utf-8
from .helpers.global_data import OsOpsDescr
from .helpers.global_data import OsOpsDescrs
from .helpers.global_data import OsOperations
from tests.helpers.global_data import OsOpsDescr
from tests.helpers.global_data import OsOpsDescrs
from tests.helpers.global_data import OsOperations

import os

Expand Down
10 changes: 5 additions & 5 deletions tests/test_os_ops_remote.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
# coding: utf-8

from .helpers.global_data import OsOpsDescr
from .helpers.global_data import OsOpsDescrs
from .helpers.global_data import OsOperations
from .helpers.local_check import LocalCheck
from tests.helpers.global_data import OsOpsDescr
from tests.helpers.global_data import OsOpsDescrs
from tests.helpers.global_data import OsOperations
from tests.helpers.local_check import LocalCheck

from src import ExecUtilException
from src.exceptions import ExecUtilException

import pytest

Expand Down