Skip to content

Commit cf586a9

Browse files
committed
Fix conftest imports
1 parent a42771d commit cf586a9

File tree

3 files changed

+3
-6
lines changed

3 files changed

+3
-6
lines changed

tests/test_setup_data_libraries_cli.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
import pathlib
22

3-
from conftest import GalaxyContainer
4-
53
from ephemeris.setup_data_libraries import main as setup_data_libraries_cli
4+
from .conftest import GalaxyContainer
65

76
LIBRARY_DATA_EXAMPLE = pathlib.Path(__file__).parent / "library_data_example.yaml"
87
LIBRARY_DATA_LEGACY_EXAMPLE = pathlib.Path(__file__).parent / "library_data_example_legacy.yaml"

tests/test_shed_tools_cli.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,10 @@
11
import pathlib
22
import tempfile
33

4-
from conftest import GalaxyContainer
5-
64
from ephemeris.generate_tool_list_from_ga_workflow_files import main as workflow_to_tools_cli
75
from ephemeris.get_tool_list_from_galaxy import main as get_tool_list_cli
86
from ephemeris.shed_tools import main as shed_tools_cli
7+
from .conftest import GalaxyContainer
98

109
OLD_TOOL_YAML = "{'owner':'jjohnson','name':'cdhit','revisions':['34a799d173f7'],'tool_panel_section_label':'CD_HIT'}"
1110

tests/test_workflow_install_cli.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
import pathlib
22

3-
from conftest import GalaxyContainer
4-
53
from ephemeris.workflow_install import main as workflow_install_cli
4+
from .conftest import GalaxyContainer
65

76
TEST_WORKFLOW_PATH = pathlib.Path(__file__).parent / "test_workflow.ga"
87

0 commit comments

Comments
 (0)