You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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")defingest_subjects(pipeline, subjects_csv):
pass# keep as is
Currently, there are DuplicateErrors if _tear_down=False. By adding skip_duplicates to insert functions or pytest markers (e.g., skipif or xfail), we could make better use of non-teardown iterations.
The text was updated successfully, but these errors were encountered:
_tear_down=False
. By addingskip_duplicates
to insert functions or pytest markers (e.g., skipif or xfail), we could make better use of non-teardown iterations.The text was updated successfully, but these errors were encountered: