Skip to content

Commit

Permalink
feat(pretty print): making sure we don't bloat the test cache.
Browse files Browse the repository at this point in the history
  • Loading branch information
andreasprlic committed May 13, 2024
1 parent c254b47 commit 8986d20
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions tests/test_pretty_print.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ class Test_SimplePosition(unittest.TestCase):
def setUpClass(cls):
cls.hp = hgvs.parser.Parser()
cls.hdp = hgvs.dataproviders.uta.connect(
mode=os.environ.get("HGVS_CACHE_MODE", "run"), cache=CACHE
mode=None, cache=None
)
cls.pp = PrettyPrint(
cls.hdp,
Expand Down Expand Up @@ -487,10 +487,6 @@ def test_ref_disagree_del(self):
for r, e in zip(result, expected_str):
self.assertEqual(e, r)

def test_ref_disagree_tx_ins(self):
""" A variant that is a tx ref disagree with an insertion in the ref genome"""
aa!


@pytest.mark.skip(reason="actually not that special, but still a nice variant.")
def test_exon_boundary_overlap_forward_strand(self):
Expand Down

0 comments on commit 8986d20

Please sign in to comment.