mirror of
https://github.com/aljazceru/Auto-GPT.git
synced 2025-12-17 14:04:27 +01:00
Some of the previously fixed things creeped in. I would like to keep the requirements low on the PR authors for now and gradually improve the pep8 compliance without introducing much breakage.
9 lines
225 B
Python
9 lines
225 B
Python
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)
|