refactor: Refactor imports to be compatible with unit tests

This commit is contained in:
Drikus Roor
2023-04-11 19:53:42 +02:00
committed by Drikus Roor
parent 3d5dba2e57
commit d0ae72e63b
12 changed files with 24 additions and 15 deletions

8
tests.py Normal file
View File

@@ -0,0 +1,8 @@
import unittest
if __name__ == "__main__":
# Load all tests from the 'scripts/tests' package
suite = unittest.defaultTestLoader.discover('scripts/tests')
# Run the tests
unittest.TextTestRunner().run(suite)