← Back to team overview

yade-dev team mailing list archive

[Branch ~yade-pkg/yade/git-trunk] Rev 3688: Use skipScripts variable to skip some scripts on check-tests.

 

------------------------------------------------------------
revno: 3688
committer: Anton Gladky <gladky.anton@xxxxxxxxx>
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