From: Luke Kenneth Casson Leighton Date: Tue, 24 Aug 2021 10:14:24 +0000 (+0100) Subject: rename run_test to run_tst so nosetests3 skips it X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=c17aa78fdd09eeefdb5d34ae5bde81c33fbef7a0;p=nmutil.git rename run_test to run_tst so nosetests3 skips it --- diff --git a/src/nmutil/test/test_clz.py b/src/nmutil/test/test_clz.py index 09beb73..14e3472 100644 --- a/src/nmutil/test/test_clz.py +++ b/src/nmutil/test/test_clz.py @@ -8,7 +8,7 @@ import random class CLZTestCase(unittest.TestCase): - def run_test(self, inputs, width=8): + def run_tst(self, inputs, width=8): m = Module() @@ -34,11 +34,11 @@ class CLZTestCase(unittest.TestCase): def test_selected(self): inputs = [0, 15, 10, 127] - self.run_test(iter(inputs), width=8) + self.run_tst(iter(inputs), width=8) def test_non_power_2(self): inputs = [0, 128, 512] - self.run_test(iter(inputs), width=11) + self.run_tst(iter(inputs), width=11) if __name__ == "__main__":