diff options
author | Frederick Muriuki Muriithi | 2022-04-13 15:11:17 +0300 |
---|---|---|
committer | Frederick Muriuki Muriithi | 2022-04-13 15:11:17 +0300 |
commit | 8954890bd7410d79ce151196f406b8e1b6985238 (patch) | |
tree | 4c1a6a44af9a518d13d6b3ba8813895fa4e068b6 /tests/conftest.py | |
parent | 6804b610266d0804dd5c391f5171943429c285cd (diff) | |
download | gn-uploader-8954890bd7410d79ce151196f406b8e1b6985238.tar.gz |
Implement remaining file parsing tests
* Implement remaining file parsing tests and some helpers functions
needed for ensuring the tests work.
Diffstat (limited to 'tests/conftest.py')
-rw-r--r-- | tests/conftest.py | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/tests/conftest.py b/tests/conftest.py new file mode 100644 index 0000000..0cdba3e --- /dev/null +++ b/tests/conftest.py @@ -0,0 +1,9 @@ +from functools import reduce + +import pytest + +from quality_control.parsing import strain_names, parse_strains + +@pytest.fixture(scope="session") +def strains(): + return strain_names(parse_strains("strains.csv")) |