Source code for testapp.scripts.dummy_test

import sys
from pathlib import Path
sys.path.append(str(Path(__file__).parents[2].resolve()))


[docs] class DummyTest:
[docs] def run(self) -> bool: return True
if __name__ == '__main__': sys.exit(0 if DummyTest().run() else 1)