Skip to content

Commit

Permalink
formattgin
Browse files Browse the repository at this point in the history
  • Loading branch information
sckott committed Jan 15, 2025
1 parent 3e35b92 commit 3488be7
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 1 deletion.
1 change: 1 addition & 0 deletions tests/cromwellapi/test-call.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

from utils import metadata_response_keys, workflow_states


def test_call(cromwell_api, submit_wdls):
"""Getting workflow metadata with expandSubWorkflows:true works"""
params = {"expandSubWorkflows": True}
Expand Down
1 change: 1 addition & 0 deletions tests/cromwellapi/test-labels.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@

LABELS_FILE_1 = Path("tests/cromwellapi/labels1.json")


def test_labels(cromwell_api):
"""Getting workflow labels works"""
job = cromwell_api.submit_workflow(
Expand Down
4 changes: 3 additions & 1 deletion tests/cromwelljava/conftest.py
Original file line number Diff line number Diff line change
@@ -1,13 +1,15 @@
import pytest


def pytest_addoption(parser):
parser.addoption(
"--wdl-path",
action="store",
default="default_value",
help="Path to a directory with a WDL file to test"
help="Path to a directory with a WDL file to test",
)


@pytest.fixture
def wdl_path(pytestconfig):
return pytestconfig.getoption("--wdl-path")
1 change: 1 addition & 0 deletions tests/cromwelljava/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ def validate(self, wdl_path, show_cmd=False):

return True


class CromwellJava(object):
"""Cromwell Java class - run Cromwell Java jar"""

Expand Down

0 comments on commit 3488be7

Please sign in to comment.