blob: 6ef5374115be97b5c83a18e0259f1d6f10b4dd21 (
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
@pytest.fixture(scope="session")
def strains():
"""Parse the strains once every test session"""
return strain_names("etc/strains.csv")
|