Skip to content

Commit

Permalink
Added tests for excessive (debugging) output to test_filter_abund_1_q…
Browse files Browse the repository at this point in the history
…uiet and test_filter_abund_1_singlefile_quiet
  • Loading branch information
Will Trimble committed Jun 30, 2017
1 parent 49f9656 commit 07c41af
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions tests/test_filter_abund.py
Original file line number Diff line number Diff line change
Expand Up @@ -410,6 +410,7 @@ def test_filter_abund_1_quiet():
status, out, err = utils.runscript(script, args, in_dir)

assert len(err) == 0
assert len(out) < 1000

outfile = infile + '.abundfilt'
n_outfile = n_infile + '.abundfilt'
Expand All @@ -427,6 +428,7 @@ def test_filter_abund_1_singlefile_quiet():
(status, out, err) = utils.runscript(script, args, in_dir)

assert len(err) == 0
assert len(out) < 1000

outfile = infile + '.abundfilt'
assert os.path.exists(outfile), outfile

0 comments on commit 07c41af

Please sign in to comment.