mirror of
https://github.com/aljazceru/Auto-GPT.git
synced 2025-12-17 05:54:26 +01:00
9 lines
225 B
Python
9 lines
225 B
Python
import unittest
|
|
|
|
if __name__ == "__main__":
|
|
# Load all tests from the 'autogpt/tests' package
|
|
suite = unittest.defaultTestLoader.discover("autogpt/tests")
|
|
|
|
# Run the tests
|
|
unittest.TextTestRunner().run(suite)
|