Index: Jenkinsfile
===================================================================
--- Jenkinsfile	(revision c23e420d0652d4ce74e2a85a2f195c432624bdcf)
+++ Jenkinsfile	(revision 7ef1555e54d0a580488242d157b569ea667e99a5)
@@ -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'
+			}
 		}
 
