Skip to content

Commit

Permalink
Fix conftest imports
Browse files Browse the repository at this point in the history
  • Loading branch information
mvdbeek committed Jan 31, 2024
1 parent a42771d commit cf586a9
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 6 deletions.
3 changes: 1 addition & 2 deletions tests/test_setup_data_libraries_cli.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
import pathlib

from conftest import GalaxyContainer

from ephemeris.setup_data_libraries import main as setup_data_libraries_cli
from .conftest import GalaxyContainer

LIBRARY_DATA_EXAMPLE = pathlib.Path(__file__).parent / "library_data_example.yaml"
LIBRARY_DATA_LEGACY_EXAMPLE = pathlib.Path(__file__).parent / "library_data_example_legacy.yaml"
Expand Down
3 changes: 1 addition & 2 deletions tests/test_shed_tools_cli.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,10 @@
import pathlib
import tempfile

from conftest import GalaxyContainer

from ephemeris.generate_tool_list_from_ga_workflow_files import main as workflow_to_tools_cli
from ephemeris.get_tool_list_from_galaxy import main as get_tool_list_cli
from ephemeris.shed_tools import main as shed_tools_cli
from .conftest import GalaxyContainer

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

Expand Down
3 changes: 1 addition & 2 deletions tests/test_workflow_install_cli.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
import pathlib

from conftest import GalaxyContainer

from ephemeris.workflow_install import main as workflow_install_cli
from .conftest import GalaxyContainer

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

Expand Down

0 comments on commit cf586a9

Please sign in to comment.