]> SALOME platform Git repositories - tools/sat.git/commitdiff
Salome HOME
add test/test_sat5_0/README as obsolete cvw/sat5_1
authorChristian Van Wambeke <christian.van-wambeke@cea.fr>
Fri, 26 Oct 2018 11:52:15 +0000 (13:52 +0200)
committerChristian Van Wambeke <christian.van-wambeke@cea.fr>
Fri, 26 Oct 2018 11:52:15 +0000 (13:52 +0200)
.gitignore
__init__.py
src/debug.py
src/options.py
src/salomeTools.py
test/test_sat5_0/README [new file with mode: 0644]

index 6413d4001350ab521155e1f92d62aee6e2218339..9d2ca299b2f87b40c8ee68f6d2e915005bf480b3 100644 (file)
@@ -14,5 +14,4 @@ test/htmlcov
 test/test_res.html
 doc/src/commands/apidoc*
 .idea
-.spyderproject
 
index a76d25d4b8cf9dbb8eae8e78f1473eec04e5c8f0..2646961521f6c20eb55adad6a7a3231301cea35f 100644 (file)
@@ -1 +1 @@
-__all__ = ['src', 'commands', ]
\ No newline at end of file
+__all__ = ['src', 'commands', "test", "unittestpy", ]
\ No newline at end of file
index 5e7924c49b1a2f7b498c22c92c1b0e61a281073d..aa2eba5f23cc75ec429a311915f79243ed27bb32 100644 (file)
@@ -153,15 +153,16 @@ def saveConfigStd(config, aStream):
     config.__save__(aStream, indent) 
 
 def getStrConfigStd(config):
-    """set string as saveConfigStd, 
-    as file .pyconf"""
+    """set string as saveConfigStd, as file .pyconf"""
     outStream = OutStream()
     saveConfigStd(config, outStream)
     return outStream.value
 
 def getStrConfigDbg(config):
-    """set string as saveConfigDbg, 
-    as (path expression evaluation) for debug"""
+    """
+    set string as saveConfigDbg, 
+    as (path expression evaluation) for debug
+    """
     outStream = OutStream()
     saveConfigDbg(config, outStream)
     return outStream.value
index 9e0f21d699f7ebc77e6c106248f3e41d6a1abf43..a92da86dc424d9b3518f4a8e8a7cbdf127008039 100644 (file)
@@ -267,6 +267,8 @@ class Options(object):
     def filterList2(self, aStr):
       """filter a list as 'KERNEL,YACS,etc.'"""
       aList = aStr.strip().split(",")
+      # fix list leading ',' as ',KERNEL,...'
+      aList = [i for i in aList if i != ""]
       return aList
       
 
index 68afac09b0a647d3335eb5c429ed4405894f8e94..18dbaded13cc7a45470388ffa3406b30f8d529c5 100755 (executable)
@@ -26,6 +26,8 @@ This file is the main API file for salomeTools
 | Usage: see file ../sat 
 """
 
+import sys
+
 _KOSYS = 1 # avoid import src
 
 # Compatibility python 2/3 for input function
@@ -46,7 +48,6 @@ ERROR: 'salomeTools.py' is not main command entry (CLI) for salomeTools.
     sys.exit(_KOSYS)
 
 import os
-import sys
 import re
 import tempfile
 import imp
diff --git a/test/test_sat5_0/README b/test/test_sat5_0/README
new file mode 100644 (file)
index 0000000..48ae79e
--- /dev/null
@@ -0,0 +1 @@
+theses tests from sat5.0 are obsolete