-
Notifications
You must be signed in to change notification settings - Fork 48
Open
Labels
enhancementNew feature or requestNew feature or request
Description
- Currently, the full suite of pytests is very time consuming (taking over an hour), as we insert and delete between each test. By adding fixture scope, we could reduce this time significantly.
@pytest.fixture(scope="session")
def ingest_subjects(pipeline, subjects_csv):
pass # keep as is- Currently, there are DuplicateErrors if
_tear_down=False. By addingskip_duplicatesto insert functions or pytest markers (e.g., skipif or xfail), we could make better use of non-teardown iterations.
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or request