aboutsummaryrefslogtreecommitdiff
path: root/tests.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests.py')
-rw-r--r--tests.py21
1 files changed, 0 insertions, 21 deletions
diff --git a/tests.py b/tests.py
deleted file mode 100644
index 62f76da8a..000000000
--- a/tests.py
+++ /dev/null
@@ -1,21 +0,0 @@
-import unittest
-
-import coverage
-
-if __name__ == "__main__":
- # Start coverage collection
- cov = coverage.Coverage()
- cov.start()
-
- # Load all tests from the 'autogpt/tests' package
- suite = unittest.defaultTestLoader.discover("./tests")
-
- # Run the tests
- unittest.TextTestRunner().run(suite)
-
- # Stop coverage collection
- cov.stop()
- cov.save()
-
- # Report the coverage
- cov.report(show_missing=True)