2023-04-11 17:53:42 +00:00
|
|
|
import unittest
|
|
|
|
|
|
|
|
if __name__ == "__main__":
|
2023-04-14 16:28:58 +00:00
|
|
|
# Load all tests from the 'autogpt/tests' package
|
|
|
|
suite = unittest.defaultTestLoader.discover('autogpt/tests')
|
2023-04-12 19:15:00 +00:00
|
|
|
|
2023-04-11 17:53:42 +00:00
|
|
|
# Run the tests
|
|
|
|
unittest.TextTestRunner().run(suite)
|