Skip to content

Commit

Permalink
[fix] fix imports for ci
Browse files Browse the repository at this point in the history
  • Loading branch information
Nikita Bushmakin committed Nov 6, 2024
1 parent 5f242fe commit 7fca19e
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
6 changes: 3 additions & 3 deletions pyreindexer/tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@

import pytest

from .helpers.api import ConnectorApi
from .helpers.log_helper import log_fixture
from .test_data.constants import index_definition, item_definition
from pyreindexer.tests.helpers.api import ConnectorApi
from pyreindexer.tests.helpers.log_helper import log_fixture
from pyreindexer.tests.test_data.constants import index_definition, item_definition


def pytest_addoption(parser):
Expand Down
2 changes: 1 addition & 1 deletion pyreindexer/tests/tests/test_database.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from hamcrest import *

from ..test_data.constants import special_namespaces, special_namespaces_cluster
from pyreindexer.tests.test_data.constants import special_namespaces, special_namespaces_cluster


class TestCrudDb:
Expand Down
4 changes: 2 additions & 2 deletions pyreindexer/tests/tests/test_index.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
from hamcrest import *

from ..helpers.base_helper import get_ns_description
from ..test_data.constants import index_definition, updated_index_definition
from pyreindexer.tests.helpers.base_helper import get_ns_description
from pyreindexer.tests.test_data.constants import index_definition, updated_index_definition


class TestCrudIndexes:
Expand Down
4 changes: 2 additions & 2 deletions pyreindexer/tests/tests/test_items.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
from hamcrest import *

from ..helpers.base_helper import get_ns_items
from ..test_data.constants import item_definition
from pyreindexer.tests.helpers.base_helper import get_ns_items
from pyreindexer.tests.test_data.constants import item_definition


class TestCrudItems:
Expand Down

0 comments on commit 7fca19e

Please sign in to comment.