Skip to content

Commit

Permalink
Fix sample id
Browse files Browse the repository at this point in the history
  • Loading branch information
rtuck99 committed Feb 3, 2025
1 parent 9dad319 commit 2c6817b
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -50,14 +50,16 @@
)
from .conftest import raw_params_from_file

SAMPLE_ID = os.environ.get("ST_SAMPLE_ID", 5461074)


@pytest.fixture
def load_centre_collect_params():
json_dict = raw_params_from_file(
"tests/test_data/parameter_json_files/example_load_centre_collect_params.json"
)
json_dict["visit"] = os.environ.get("ST_VISIT", "cm37235-4")
json_dict["sample_id"] = os.environ.get("ST_SAMPLE_ID", 5461074)
json_dict["sample_id"] = SAMPLE_ID
return LoadCentreCollect(**json_dict)


Expand Down

0 comments on commit 2c6817b

Please sign in to comment.