Skip to content
Snippets Groups Projects
Commit 58c71ef9 authored by Jeremy Mathews's avatar Jeremy Mathews
Browse files

Add arg parser to pytest

parent f42d1727
Branches
Tags
No related merge requests found
......@@ -62,7 +62,8 @@ def test_check_controls_single(design_experiment_3):
@pytest.mark.unit
def test_single_rep(design_experiment_2):
single_rep = pool_and_psuedoreplicate.main(design_experiment_2, "true", 1.2)
args = self.parser.parse_args(['true', design_experiment_2, 1.2])
single_rep = pool_and_psuedoreplicate.main(args.paired, args.design, args.cutoff)
@pytest.mark.singleend
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment