aboutsummaryrefslogtreecommitdiff
path: root/tests/conftest.py
diff options
context:
space:
mode:
authorFrederick Muriuki Muriithi2022-04-20 13:26:20 +0300
committerFrederick Muriuki Muriithi2022-04-20 13:26:20 +0300
commit5897b6ec7fbd1226cd68a292122cc494e46f6829 (patch)
treeeb7cf72b8da2546aded142e684b9b84ac02a23d9 /tests/conftest.py
parent8954890bd7410d79ce151196f406b8e1b6985238 (diff)
downloadgn-uploader-5897b6ec7fbd1226cd68a292122cc494e46f6829.tar.gz
Fix linting issues
Diffstat (limited to 'tests/conftest.py')
-rw-r--r--tests/conftest.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/conftest.py b/tests/conftest.py
index 0cdba3e..f79166d 100644
--- a/tests/conftest.py
+++ b/tests/conftest.py
@@ -1,4 +1,4 @@
-from functools import reduce
+"""Set up fixtures for tests"""
import pytest
@@ -6,4 +6,5 @@ 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"))