Index: Jenkinsfile
===================================================================
--- Jenkinsfile	(revision 245510f0a88c71b3f32e00d3269aee2caf927998)
+++ Jenkinsfile	(revision 1f17e07e89e42a84c6bf97c4f6c871c8d1a531b4)
@@ -5,5 +5,5 @@
 //===========================================================================================================
 //Compilation script is done here but environnement set-up and error handling is done in main loop
-def cfa_build() {
+def cfa_build(boolean full_build) {
 	build_stage 'Checkout'
 		def install_dir = pwd tmp: true
@@ -28,5 +28,10 @@
 		//Run the tests from the example directory
 		dir ('src/tests') {
-			sh './runTests.sh'
+			if (full_build) {
+				sh 'python test.py --all'
+			}
+			else {
+				sh './runTests.sh'
+			}
 		}
 
