Skip to content

Commit

Permalink
Enable SNOMED test by adding __init__.py to directory
Browse files Browse the repository at this point in the history
Then immediately disable test because it takes too long ;-)
  • Loading branch information
hsolbrig committed Aug 10, 2021
1 parent 7c97adf commit dc50773
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
Empty file.
5 changes: 4 additions & 1 deletion tests/test_ontologies/test_snomed.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,16 @@
from funowl.converters.functional_converter import to_python
from tests import datadir

SKIP_SNOMED_TEST = True


class SnomedTestCase(unittest.TestCase):
@unittest.skipIf(SKIP_SNOMED_TEST, "This test takes a long time...")
def test_snomed(self):
start_time = time.time()
doc = to_python(os.path.join(datadir, 'ontology-after-conversion.owl'))
print("--- %s seconds ---" % (time.time() - start_time))
self.assertTrue(False, "Implement Me")


if __name__ == '__main__':
unittest.main()

0 comments on commit dc50773

Please sign in to comment.