__main__.py 399 B

12345678910111213141516
  1. #
  2. # This file is part of pyasn1 software.
  3. #
  4. # Copyright (c) 2005-2020, Ilya Etingof <etingof@gmail.com>
  5. # License: https://pyasn1.readthedocs.io/en/latest/license.html
  6. #
  7. import unittest
  8. suite = unittest.TestLoader().loadTestsFromNames(
  9. ['tests.compat.test_integer.suite',
  10. 'tests.compat.test_octets.suite']
  11. )
  12. if __name__ == '__main__':
  13. unittest.TextTestRunner(verbosity=2).run(suite)