From b22f728a884a61e34df0f913fb8a98e9afe508b7 Mon Sep 17 00:00:00 2001 From: Andru Liu <90433630+WallabyLester@users.noreply.github.com> Date: Wed, 9 Oct 2024 15:56:12 -0700 Subject: [PATCH] Added init for future package implementations and test run file. --- NP_Implementation/run_np_tests.py | 9 +++++++++ NP_Implementation/test/__init__.py | 0 2 files changed, 9 insertions(+) create mode 100644 NP_Implementation/run_np_tests.py create mode 100644 NP_Implementation/test/__init__.py diff --git a/NP_Implementation/run_np_tests.py b/NP_Implementation/run_np_tests.py new file mode 100644 index 0000000..d6bf33b --- /dev/null +++ b/NP_Implementation/run_np_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 diff --git a/NP_Implementation/test/__init__.py b/NP_Implementation/test/__init__.py new file mode 100644 index 0000000..e69de29