diff options
| author | Mason Reed <mason@vector35.com> | 2024-06-14 12:20:46 -0400 |
|---|---|---|
| committer | Mason Reed <mason@vector35.com> | 2024-06-14 12:20:46 -0400 |
| commit | 3c58f74fe8e8bb9029cfe560a836303a2ce3bbdb (patch) | |
| tree | 8566be9997805944141e3c745c26fdbe4bc07b3e /suite/unit_api.py | |
| parent | f4eb81635006d8bbfe1a4a7550d62ae3163117a3 (diff) | |
Delete unmaintained test suite
Diffstat (limited to 'suite/unit_api.py')
| -rwxr-xr-x | suite/unit_api.py | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/suite/unit_api.py b/suite/unit_api.py deleted file mode 100755 index 3c93e823..00000000 --- a/suite/unit_api.py +++ /dev/null @@ -1,27 +0,0 @@ -#!/usr/bin/env python -# This test file is maintained for API unit test distribution. -import os -import sys -import unittest -import pickle -import zipfile -import difflib -from collections import Counter - -api_suite_path = os.path.join(os.path.dirname(os.path.realpath(__file__)), "..", "api", "suite") -sys.path.append(api_suite_path) -import testcommon -import api_test - -global verbose -verbose = False - -if __name__ == "__main__": - if len(sys.argv) > 1: - for i in range(1, len(sys.argv)): - if sys.argv[i] == '-v' or sys.argv[i] == '-V' or sys.argv[i] == '--verbose': - verbose = True - - test_suite = unittest.defaultTestLoader.loadTestsFromModule(api_test) - runner = unittest.TextTestRunner(verbosity=2) - runner.run(test_suite) |
