From be9d2f8e02faac1736069a853708dee56e13cece Mon Sep 17 00:00:00 2001 From: Andru Liu <90433630+WallabyLester@users.noreply.github.com> Date: Wed, 9 Oct 2024 17:31:14 -0700 Subject: [PATCH] Added run tests file for TF implementation. --- TF_Implementation/run_tf_tests.py | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 TF_Implementation/run_tf_tests.py diff --git a/TF_Implementation/run_tf_tests.py b/TF_Implementation/run_tf_tests.py new file mode 100644 index 0000000..d6bf33b --- /dev/null +++ b/TF_Implementation/run_tf_tests.py @@ -0,0 +1,9 @@ +import unittest + +loader = unittest.TestLoader() +suite = unittest.TestSuite() + +suite.addTests(loader.discover(start_dir='test', pattern='*.py')) + +runner = unittest.TextTestRunner() +runner.run(suite) \ No newline at end of file