run.py 484 B

12345678910111213141516171819
  1. #!/usr/bin/python3
  2. # -*- coding: UTF-8 -*-
  3. import sys, os
  4. sys.path.append(os.path.dirname(os.path.dirname(os.path.realpath(__file__))))
  5. from tests.test_baike import *
  6. from tests.test_douban import *
  7. from tests.test_main import *
  8. from tests.test_models import *
  9. from tests.test_upload import *
  10. from tests.test_ssl_crt import *
  11. from tests.test_scan import *
  12. from tests.test_admin import *
  13. from tests.test_utils import *
  14. import unittest
  15. if __name__ == "__main__":
  16. unittest.main()