------------------------------------------------------------ revno: 3688 committer: Anton Gladky <[email protected]> timestamp: Mon 2013-09-09 09:37:01 +0200 message: Use skipScripts variable to skip some scripts on check-tests. modified: scripts/checks-and-tests/checks/checkList.py
-- lp:yade https://code.launchpad.net/~yade-pkg/yade/git-trunk Your team Yade developers is subscribed to branch lp:yade. To unsubscribe from this branch go to https://code.launchpad.net/~yade-pkg/yade/git-trunk/+edit-subscription
=== modified file 'scripts/checks-and-tests/checks/checkList.py' --- scripts/checks-and-tests/checks/checkList.py 2013-08-29 10:45:21 +0000 +++ scripts/checks-and-tests/checks/checkList.py 2013-09-09 07:37:01 +0000 @@ -5,8 +5,11 @@ scriptsToRun=os.listdir(checksPath) resultStatus = 0 nFailed=0 + +skipScripts = ['checkList.py'] + for script in scriptsToRun: - if (script[len(script)-3:]==".py" and not(script=="checkList.py")): + if (script[len(script)-3:]==".py" and script not in skipScripts): try: print "###################################" print "running: ",script
_______________________________________________ Mailing list: https://launchpad.net/~yade-dev Post to : [email protected] Unsubscribe : https://launchpad.net/~yade-dev More help : https://help.launchpad.net/ListHelp

