Some methods fail because they are related to specific ids
Ex:
|
# TODO: It would be better to dynamically define IDs, so to not be restricted to a specific instance |
|
@pytest.mark.parametrize( |
|
'aliquot_id', |
|
[ |
|
'13758', # Lab Group: Common |
|
'13760', # Lab Group: Common |
|
], |
|
ids=[ |
|
'one_aliquot', |
|
'another_aliquot', |
|
], |
|
) |
|
def test_get_aliquot_by_id( |
|
self, |
|
aliquot_id: str, |
|
logged_build_client: BUILDClient, |
|
) -> None: |
platesfunctionalities on BUILDSome methods fail because they are related to specific ids
Ex:
api-client/teselagen/api/tests/test_build_client.py
Lines 314 to 330 in 6070f52