• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1#!/usr/bin/env python3
2
3import sys
4import unittest
5
6import acts_integration_test
7import acts_unittest_suite
8
9if __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