Commit 6afb5e9b authored by Felipe Bordeu's avatar Felipe Bordeu
Browse files

(Test.py) add extra period to mark the beginning and the end on the skip string

parent 869ea616
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -321,7 +321,7 @@ def __tryImportRecursive(subModule, toCheck, stopAtFirstError, modulesToTreat, m
                raise

            for subSubModule  in subSubModules:
                if any([x.lower() in subSubModule.lower() for x in modulesToSkip]):
                if any([x.lower() in ("."+subSubModule.lower()+".") for x in modulesToSkip]):
                    print("skip module :" +str(subSubModule))
                    continue
                try: