1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
|
"""
Adapted from a code editor component created
for Enki editor as replacement for QScintilla.
Copyright (C) 2020 Andrei Kopats
Originally licensed under the terms of GNU Lesser General Public License
as published by the Free Software Foundation, version 2.1 of the license.
This is compatible with Orange3's GPL-3.0 license.
""" # pylint: disable=duplicate-code
import unittest
import sys
if __name__ == "__main__":
# Look for all tests. Using test_* instead of
# test_*.py finds modules (test_syntax and test_indenter).
suite = unittest.TestLoader().discover('.', pattern="test_*")
print("Suite created")
result = unittest.TextTestRunner(verbosity=2).run(suite)
print("Run done")
# Indicate success or failure via the exit code: success = 0, failure = 1.
if result.wasSuccessful():
print("OK")
sys.exit(0)
else:
print("Failed")
sys.exit(not result.wasSuccessful())
|