Skip to content

Commit

Permalink
Skipping relationship GCI test.
Browse files Browse the repository at this point in the history
  • Loading branch information
cmungall committed Apr 16, 2022
1 parent 1f53362 commit f8d53a5
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion tests/test_implementations/test_pronto.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit f8d53a5

Please sign in to comment.