Home | History | Annotate | Download | only in tests
      1 #!/usr/bin/env python3
      2 
      3 import sys
      4 import unittest
      5 
      6 import acts_integration_test
      7 import acts_unittest_suite
      8 
      9 if __name__ == "__main__":
     10     # This files executes both the unit tests and the integration test.
     11     suite = acts_unittest_suite.compile_suite()
     12     suite.addTest(acts_integration_test.ActsIntegrationTest("test_acts"))
     13     runner = unittest.TextTestRunner()
     14     results = runner.run(suite)
     15     sys.exit(not results.wasSuccessful())
     16