From 0627e261406b9c9143ff9f697e939f8c384c4571 Mon Sep 17 00:00:00 2001 From: George-the-1st Date: Thu, 2 May 2024 22:34:30 -0400 Subject: [PATCH] Added missing unittest execution code (#4400) same code as on every other test file, just missing from this one for some reason. --- test/test_arange.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/test/test_arange.py b/test/test_arange.py index 258b3a85..4820fc05 100644 --- a/test/test_arange.py +++ b/test/test_arange.py @@ -11,4 +11,7 @@ class TestArange(unittest.TestCase): f1 = self._get_flops(256) f2 = self._get_flops(2560) print(f"{f1=}, {f2=}") - assert f2 / f1 < 15, f"bad complexity, flops {f2/f1:.1f}X while inputs 10X" \ No newline at end of file + assert f2 / f1 < 15, f"bad complexity, flops {f2/f1:.1f}X while inputs 10X" + +if __name__ == "__main__": + unittest.main() \ No newline at end of file