From f8d53a59bf6acb8c337d0c7ab440416f78ae5740 Mon Sep 17 00:00:00 2001 From: cmungall Date: Fri, 15 Apr 2022 17:12:00 -0700 Subject: [PATCH] Skipping relationship GCI test. See https://github.com/althonos/pronto/issues/163 --- tests/test_implementations/test_pronto.py | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/tests/test_implementations/test_pronto.py b/tests/test_implementations/test_pronto.py index 7d47faa99..050b5e139 100644 --- a/tests/test_implementations/test_pronto.py +++ b/tests/test_implementations/test_pronto.py @@ -29,7 +29,13 @@ def test_relationships(self): self.assertCountEqual(rels[IS_A], ['GO:0043231']) self.assertCountEqual(rels[PART_OF], [CYTOPLASM]) - + @unittest.skip('https://github.com/althonos/pronto/issues/163') + def test_gci_relationships(self): + oi = self.oi + rels = oi.get_outgoing_relationships_by_curie(CELL) + self.assertCountEqual(rels[IS_A], ['CARO:0000003']) + self.assertCountEqual(rels[ONLY_IN_TAXON], [CELLULAR_ORGANISMS]) + self.assertNotIn(NUCLEUS, rels[PART_OF]) def test_incoming_relationships(self): oi = self.oi