Skip to content

Commit

Permalink
Add debug asserT
Browse files Browse the repository at this point in the history
  • Loading branch information
rhpvorderman committed Nov 7, 2023
1 parent 43b167c commit 677e886
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions tests/test_sequence_duplication.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import collections
import itertools
import math
import sys

import pytest

Expand Down Expand Up @@ -129,5 +130,7 @@ def test_sequence_duplication_case_insensitive():
assert seqdup.total_fragments == 4
assert seqdup.collected_unique_sequences == 2
assert len(seqcounts) == 2
if sys.platform.startswith("win"):
assert seqcounts == {}
assert seqcounts[("AATTACA" * 5)[:31]] == 2
assert seqcounts[("AATTACA" * 5)[-31:]] == 2

0 comments on commit 677e886

Please sign in to comment.