]> SALOME platform Git repositories - tools/sat.git/commitdiff
Salome HOME
style(test): autoflake for unused import and unused vars
authorGbkng <guillaume.brooking@gmail.com>
Wed, 14 Feb 2024 19:07:46 +0000 (20:07 +0100)
committerGbkng <guillaume.brooking@gmail.com>
Wed, 14 Feb 2024 19:09:07 +0000 (20:09 +0100)
27 files changed:
test/test_020_debug.py
test/test_021_versionMinorMajorPatch.py
test/test_024_logging.py
test/test_035_pyconf.py
test/test_100_satHelp.py
test/test_500_APPLI_TEST.py
test/test_501_paramiko.py
test/test_sat5_0/compilation/test_compilation.py
test/test_sat5_0/compilation/test_configure.py
test/test_sat5_0/compilation/test_make.py
test/test_sat5_0/compilation/test_makeinstall.py
test/test_sat5_0/config/test_create_user_pyconf.py
test/test_sat5_0/config/test_option_copy.py
test/test_sat5_0/config/test_option_edit.py
test/test_sat5_0/config/test_option_value.py
test/test_sat5_0/config/test_option_value_2.py
test/test_sat5_0/environ/test_environ.py
test/test_sat5_0/job/test_job.py
test/test_sat5_0/jobs/test_jobs.py
test/test_sat5_0/log/test_launch_browser.py
test/test_sat5_0/log/test_launch_browser2.py
test/test_sat5_0/prepare/test_clean.py
test/test_sat5_0/prepare/test_patch.py
test/test_sat5_0/prepare/test_prepare.py
test/test_sat5_0/prepare/test_source.py
test/test_sat5_0/shell/test_shell.py
test/test_sat5_0/test/test_command.py

index 9d09ca83f597a7a4e5782031e5f4fa097eb90a6b..fb7e173438dd759b125d06d0d022f49094bc2425 100755 (executable)
@@ -17,8 +17,6 @@
 #  License along with this library; if not, write to the Free Software
 #  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
 
-import os
-import sys
 import unittest
 
 import initializeTest  # set PATH etc for test
@@ -121,4 +119,3 @@ class TestCase(unittest.TestCase):
 
 if __name__ == "__main__":
     unittest.main(exit=False)
-    pass
index 0da8c69dffc335db0a8562bfa10c7f5bc7d9f82b..a268e6f06c834d867d4471ef8485f53721c016c3 100755 (executable)
@@ -29,8 +29,6 @@ and range of versions
 | PATCH version when you make backwards-compatible bug fixes.
 """
 
-import os
-import sys
 
 import unittest
 import pprint as PP
@@ -255,4 +253,3 @@ toto_from_2""".split(
 
 if __name__ == "__main__":
     unittest.main(exit=False)
-    pass
index 3d4d0c1dc152d1dd3a05865be3fe99c2e9dbc4c2..6713cc6a2ec203e0877f161ae7e7f75c0f2f9aa0 100755 (executable)
@@ -46,12 +46,8 @@ see: http://sametmax.com/ecrire-des-logs-en-python
 |  logger.warning('Testing %s', 'foo')
 """
 
-import os
-import sys
 import unittest
-import pprint as PP
 import logging as LOGI
-from logging.handlers import BufferingHandler
 
 import src.debug as DBG
 
@@ -104,7 +100,6 @@ class TestCase(unittest.TestCase):
         if verbose:
             DBG.push_debug(True)
             # DBG.write("assert unittest", [a for a in dir(self) if "assert" in a])
-        pass
 
     def test_999(self):
         # one shot tearDown() for this TestCase
@@ -156,4 +151,3 @@ class TestCase(unittest.TestCase):
 
 if __name__ == "__main__":
     unittest.main(exit=False)
-    pass
index a62f1490d998b497532a403517c123c2e68ae300..c465937dbde1714b4c134cb53ef27bf3e8e8f0c1 100755 (executable)
@@ -17,8 +17,6 @@
 #  License along with this library; if not, write to the Free Software
 #  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
 
-import os
-import sys
 import unittest
 
 import initializeTest  # set PATH etc for test
@@ -256,4 +254,3 @@ Bienvenue, Yves
 
 if __name__ == "__main__":
     unittest.main(exit=False)
-    pass
index d092136fcf9ad418732250ab1859faf062278733..18d3a6d17d10c9a0524e78dfba4bec8de5c56a78 100755 (executable)
@@ -17,8 +17,6 @@
 #  License along with this library; if not, write to the Free Software
 #  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
 
-import os
-import sys
 import unittest
 
 import initializeTest  # set PATH etc for test
@@ -43,7 +41,7 @@ class TestCase(unittest.TestCase):
         self.assertFalse("CRITICAL" in logs)
 
     def test_000(self):
-        logger = LOG.getUnittestLogger()
+        LOG.getUnittestLogger()
         # one shot setUp() for this TestCase
         if self.debug:
             DBG.push_debug(True)
@@ -145,4 +143,3 @@ class TestCase(unittest.TestCase):
 
 if __name__ == "__main__":
     unittest.main(exit=False)
-    pass
index 8c246fb2ea63f51fb864201b2f96ed0e11c7c4c6..d928526b1e414cf7f79bcf13cb7a309d4ccfeb95 100755 (executable)
@@ -17,8 +17,6 @@
 #  License along with this library; if not, write to the Free Software
 #  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
 
-import os
-import sys
 import unittest
 
 import initializeTest  # set PATH etc for test
@@ -65,7 +63,7 @@ class TestCase(unittest.TestCase):
         self.assertFalse("CRITICAL ::" in logs)
 
     def test_000(self):
-        logger = LOG.getUnittestLogger()
+        LOG.getUnittestLogger()
         # one shot setUp() for this TestCase
         if self.debug:
             DBG.push_debug(True)
@@ -123,11 +121,10 @@ class TestCase(unittest.TestCase):
             s = SAT.Sat(logger)
             DBG.write("test_120 'sat %s'" % cmd, "expected raise", dbg)
             with self.assertRaises(Exception):
-                returnCode = s.execute_cli(cmd)
+                s.execute_cli(cmd)
             logs = logger.getLogsAndClear()
             DBG.write("logs", logs, dbg)
 
 
 if __name__ == "__main__":
     unittest.main(exit=False)
-    pass
index 9e2308f680cff05e70ee4dd25192fc1b4a401b59..db18987cf6cb221467148336663b82b0fe1c321e 100755 (executable)
@@ -92,7 +92,6 @@ to set id_rsa from/to reflexive on local machine:
 """
 
 import os
-import sys
 import unittest
 import getpass
 
@@ -203,4 +202,3 @@ class TestCase(unittest.TestCase):
 if __name__ == "__main__":
     # verbose = True # human eyes
     unittest.main(exit=False)
-    pass
index 807b1d77fbfdf725a41f255caf78b89505db712c..0a48ae36ac70962d135d9f95693cb270ed07379f 100755 (executable)
@@ -18,7 +18,6 @@
 #  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
 
 import os
-import sys
 import unittest
 
 import src.product
@@ -269,4 +268,3 @@ class TestCase(unittest.TestCase):
 # test launch
 if __name__ == "__main__":
     unittest.main()
-    pass
index c9ac3d70127c12a477ca642b3caccf1da79332d2..54be010bd32b18a1705ffd8ecfad8ed47a4302b4 100755 (executable)
@@ -18,7 +18,6 @@
 #  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
 
 import os
-import sys
 import unittest
 
 import src.product
@@ -118,4 +117,3 @@ class TestCase(unittest.TestCase):
 # test launch
 if __name__ == "__main__":
     unittest.main()
-    pass
index b00fd8d4dc3e7fccd25b3d4b0ea5de09c9a8e7a7..fc5b5b573f3897a023324fc40e662daf607a5880 100755 (executable)
@@ -18,7 +18,6 @@
 #  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
 
 import os
-import sys
 import unittest
 
 import src.product
@@ -111,4 +110,3 @@ class TestCase(unittest.TestCase):
 # test launch
 if __name__ == "__main__":
     unittest.main()
-    pass
index 6793b0a95b91533b94803ef71f774cb00a946e11..842c1cf9240c767b7e45826a5de54ce7aeeb9363 100755 (executable)
@@ -18,7 +18,6 @@
 #  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
 
 import os
-import sys
 import unittest
 
 import src.product
@@ -73,4 +72,3 @@ class TestMakeinstall(unittest.TestCase):
 # test launch
 if __name__ == "__main__":
     unittest.main()
-    pass
index 79e717d39a92fe9d71aae8eec1987c61c166ffa2..fa55229ffd9c21f6cfc6cb8e34356efdde87658c 100755 (executable)
@@ -17,7 +17,6 @@
 #  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
 
 import os
-import sys
 import shutil
 import unittest
 
@@ -122,4 +121,3 @@ class TestCase(unittest.TestCase):
 # test launch
 if __name__ == "__main__":
     unittest.main()
-    pass
index 08b4f5d2d0fc72b817bd6f12bdeb5796e1c8c39b..0a283db142969941adb97458bd5c677435acc549 100755 (executable)
@@ -18,7 +18,6 @@
 #  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
 
 import os
-import sys
 import unittest
 
 from src.salomeTools import Sat
@@ -56,4 +55,3 @@ class TestCase(unittest.TestCase):
 # test launch
 if __name__ == "__main__":
     unittest.main()
-    pass
index b7e265300ac7bddb26b719c7f781f593709c04d1..5290d3a1c80ffb2ecf1c4fc87810a34c823e02d4 100755 (executable)
@@ -17,8 +17,6 @@
 #  License along with this library; if not, write to the Free Software
 #  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
 
-import os
-import sys
 import threading
 import time
 import unittest
@@ -76,4 +74,3 @@ class TestCase(unittest.TestCase):
 # test launch
 if __name__ == "__main__":
     unittest.main()
-    pass
index 5557fc0f40db71fe243d3050b816b812ca3db253..7db29c7ca7db8351bd0d2fda9bffd396f84545dd 100755 (executable)
@@ -17,8 +17,6 @@
 #  License along with this library; if not, write to the Free Software
 #  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
 
-import os
-import sys
 import platform
 import unittest
 
@@ -108,4 +106,3 @@ class TestCase(unittest.TestCase):
 # test launch
 if __name__ == "__main__":
     unittest.main()
-    pass
index cf7119d83b6fc4ec6288b3adcdcfbce9bed32517..a16623da33083a2bffcc01627ad0908a53b16b01 100755 (executable)
@@ -17,8 +17,6 @@
 #  License along with this library; if not, write to the Free Software
 #  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
 
-import os
-import sys
 import platform
 import unittest
 
@@ -99,4 +97,3 @@ class TestCase(unittest.TestCase):
 # test launch
 if __name__ == "__main__":
     unittest.main()
-    pass
index 868957495d12b8dbb3067f8892191a5ca4169abd..b2a822c6cd1435a7a64800f413754807a3e07200 100755 (executable)
@@ -18,7 +18,6 @@
 #  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
 
 import os
-import sys
 import unittest
 
 from src.salomeTools import Sat
@@ -149,4 +148,3 @@ class TestSource(unittest.TestCase):
 # test launch
 if __name__ == "__main__":
     unittest.main()
-    pass
index d255fd08eaa8c9f62fb711f93e47f2b65ac14ee6..32e9d936872408e271b052871278fa32bc20fae5 100755 (executable)
@@ -18,7 +18,6 @@
 #  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
 
 import os
-import sys
 import unittest
 
 from src.salomeTools import Sat
@@ -125,4 +124,3 @@ class TestCase(unittest.TestCase):
 # test launch
 if __name__ == "__main__":
     unittest.main()
-    pass
index aa2f1ad5fc9ff73ed193a7011cac872e441337cd..9937f7fff95a81c996c5f568540ced3b0bd039a7 100755 (executable)
@@ -18,7 +18,6 @@
 #  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
 
 import os
-import sys
 import unittest
 
 from src.salomeTools import Sat
@@ -161,4 +160,3 @@ class TestCase(unittest.TestCase):
 # test launch
 if __name__ == "__main__":
     unittest.main()
-    pass
index 2a45cd0a281d66113805037b31489f5160a1970d..9f635fe40ed576a69e8400e489bccc535e7fc928 100755 (executable)
@@ -234,7 +234,7 @@ class TestCase(unittest.TestCase):
 
         sat.config("-v VARS.user")
 
-        nb_logs_t0 = len(os.listdir(sat.cfg.USER.log_dir))
+        len(os.listdir(sat.cfg.USER.log_dir))
 
         if os.path.exists(sat.cfg.USER.log_dir + "_save"):
             shutil.rmtree(sat.cfg.USER.log_dir + "_save")
@@ -297,4 +297,3 @@ class TestCase(unittest.TestCase):
 # test launch
 if __name__ == "__main__":
     unittest.main()
-    pass
index 76b7b5185f0e90535b6b8b2f4d871ba0902c3b3a..ea6599154d7fb0a3a1f2e3defab92eb84f10b3a0 100755 (executable)
@@ -17,8 +17,6 @@
 #  License along with this library; if not, write to the Free Software
 #  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
 
-import os
-import sys
 import threading
 import time
 import unittest
@@ -55,4 +53,3 @@ class TestCase(unittest.TestCase):
 # test launch
 if __name__ == "__main__":
     unittest.main()
-    pass
index 3203654a4127382e04ea87aedac1051e6c8e708a..7ef9c5f797f4668af9c132382879b85b05ed6fa9 100755 (executable)
@@ -18,7 +18,6 @@
 #  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
 
 import os
-import sys
 import unittest
 
 from src.salomeTools import Sat
@@ -201,4 +200,3 @@ class TestCase(unittest.TestCase):
 # test launch
 if __name__ == "__main__":
     unittest.main()
-    pass
index af7a375ee9ccbaba8148aff3f368d5835779216c..76c05485fd4d08ae0d8f716dd5e70ac5543fb4fa 100755 (executable)
@@ -18,7 +18,6 @@
 #  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
 
 import os
-import sys
 import shutil
 import unittest
 
@@ -173,4 +172,3 @@ class TestCase(unittest.TestCase):
 # test launch
 if __name__ == "__main__":
     unittest.main()
-    pass
index 92f5e04a8ac05616b47117b5c6188b4c9572ee82..f25c4ddd3d4c52afa18ef42229a2b80e225a456b 100755 (executable)
@@ -18,7 +18,6 @@
 #  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
 
 import os
-import sys
 import shutil
 import unittest
 
@@ -114,4 +113,3 @@ class TestCase(unittest.TestCase):
 # test launch
 if __name__ == "__main__":
     unittest.main()
-    pass
index ac09fe3f3718d2440315ce0bc249cc4f27365cde..542773272d2e10fcf2ca087c9795804aec305d2f 100755 (executable)
@@ -18,7 +18,6 @@
 #  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
 
 import os
-import sys
 import unittest
 
 from src.salomeTools import Sat
@@ -184,4 +183,3 @@ class TestCase(unittest.TestCase):
 # test launch
 if __name__ == "__main__":
     unittest.main()
-    pass
index 65521be254a62ecc196237d9505704e44339a953..860af29a6664103e86d2353d6ac13bbe7650489d 100755 (executable)
@@ -18,7 +18,6 @@
 #  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
 
 import os
-import sys
 import unittest
 
 from src.salomeTools import Sat
@@ -90,4 +89,3 @@ class TestCase(unittest.TestCase):
 # test launch
 if __name__ == "__main__":
     unittest.main()
-    pass
index 8ea743fb2c2abfa61a81fd7599582eaa4f1ce5fe..db76f1e31889d3f92075269bcd2ab290f56e133b 100755 (executable)
@@ -18,7 +18,6 @@
 #  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
 
 import os
-import sys
 import unittest
 
 from src.salomeTools import Sat
@@ -94,4 +93,3 @@ class TestTest(unittest.TestCase):
 # test launch
 if __name__ == "__main__":
     unittest.main()
-    pass