Skip to content

Commit

Permalink
Fix broken gxformat2 imports.
Browse files Browse the repository at this point in the history
  • Loading branch information
jmchilton committed Oct 8, 2018
1 parent 8ed5d8c commit adcd733
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion test/manual/workflows_scaling.py
Expand Up @@ -15,6 +15,7 @@
from uuid import uuid4

from bioblend import galaxy
from gxformat2 import python_to_workflow

galaxy_root = os.path.abspath(os.path.join(os.path.dirname(__file__), os.path.pardir, os.path.pardir))
sys.path[1:1] = [os.path.join(galaxy_root, "lib"), os.path.join(galaxy_root, "test")]
Expand All @@ -24,7 +25,6 @@
GiDatasetPopulator,
GiWorkflowPopulator,
)
from base.workflows_format_2.converter import python_to_workflow # noqa: I100

LONG_TIMEOUT = 1000000000
DESCRIPTION = "Script to exercise the workflow engine."
Expand Down
8 changes: 4 additions & 4 deletions test/selenium_tests/framework.py
Expand Up @@ -10,6 +10,10 @@
from functools import partial, wraps

import requests
from gxformat2 import (
convert_and_import_workflow,
ImporterGalaxyInterface,
)
try:
from pyvirtualdisplay import Display
except ImportError:
Expand All @@ -20,10 +24,6 @@
from base.api import UsesApiTestCaseMixin # noqa: I100
from base.driver_util import classproperty, DEFAULT_WEB_HOST, get_ip_address # noqa: I100
from base.testcase import FunctionalTestCase # noqa: I100
from base.workflows_format_2 import ( # noqa: I100
convert_and_import_workflow,
ImporterGalaxyInterface,
)
from galaxy_selenium import ( # noqa: I100,I201
driver_factory,
)
Expand Down

0 comments on commit adcd733

Please sign in to comment.