← Back to team overview

yade-dev team mailing list archive

[Branch ~yade-pkg/yade/git-trunk] Rev 3689: Skip temporarly DEM-PFV-check.py to let daily-builds packages be built.

 

------------------------------------------------------------
revno: 3689
committer: Anton Gladky <gladky.anton@xxxxxxxxx>
timestamp: Mon 2013-09-09 09:37:01 +0200
message:
  Skip temporarly DEM-PFV-check.py to let daily-builds packages be built.
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-09-09 07:37:01 +0000
+++ scripts/checks-and-tests/checks/checkList.py	2013-09-09 07:37:01 +0000
@@ -6,7 +6,7 @@
 resultStatus = 0
 nFailed=0
 
-skipScripts = ['checkList.py']
+skipScripts = ['checkList.py', 'DEM-PFV-check.py']
 
 for script in scriptsToRun:
 	if (script[len(script)-3:]==".py" and script not in skipScripts):
@@ -23,6 +23,10 @@
 		except:
 			print script," failure"
 		O.reset()
+	elif (script in skipScripts):
+		print "###################################"
+		print "Skipping %s, because it is in SkipScripts"%script
+		
 if (resultStatus>0):
 	print resultStatus, " tests are failed"
 	sys.exit(1)