You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

test_compatibility.py 390 B

12345678910111213141516171819
  1. # Copyright (c) Alibaba, Inc. and its affiliates.
  2. import unittest
  3. class CompatibilityTest(unittest.TestCase):
  4. def setUp(self):
  5. print(('Testing %s.%s' % (type(self).__name__, self._testMethodName)))
  6. def tearDown(self):
  7. super().tearDown()
  8. def test_xtcocotools(self):
  9. from xtcocotools.coco import COCO
  10. if __name__ == '__main__':
  11. unittest.main()