blob: f79166d5ee9c63d880f366ef696e82ac01896f14 (
plain)
1
2
3
4
5
6
7
8
9
10
|
"""Set up fixtures for tests"""
import pytest
from quality_control.parsing import strain_names, parse_strains
@pytest.fixture(scope="session")
def strains():
"""Parse the strains once every test session"""
return strain_names(parse_strains("strains.csv"))
|