Skip to content

Commit

Permalink
Merge pull request #486 from pepkit/dev_474
Browse files Browse the repository at this point in the history
Dev 474
  • Loading branch information
donaldcampbelljr authored Mar 21, 2024
2 parents db70fe7 + 32697a0 commit 8d57742
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
3 changes: 3 additions & 0 deletions looper/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -560,6 +560,9 @@ def read_looper_config_file(looper_config_path: str) -> dict:

# Expand paths in case ENV variables are used
for k, v in return_dict.items():
if k == SAMPLE_PL_ARG or k == PROJECT_PL_ARG:
# Pipeline interfaces are resolved at a later point. Do it there only to maintain consistency. #474
pass
if isinstance(v, str):
v = expandpath(v)
# TODO this is messy because is_pephub_registry needs to fail on anything NOT a pephub registry path
Expand Down
1 change: 1 addition & 0 deletions tests/test_comprehensive.py
Original file line number Diff line number Diff line change
Expand Up @@ -148,6 +148,7 @@ def test_comprehensive_looper_pipestat(prep_temp_pep_pipestat):
retrieved_result = psm.retrieve_one(record_identifier="frog_2")


@pytest.mark.skipif(not is_connected(), reason="This test needs internet access.")
def test_comprehensive_looper_pephub(prep_temp_pep_pephub):
"""Basic test to determine if Looper can run a PEP from PEPHub"""

Expand Down

0 comments on commit 8d57742

Please sign in to comment.