adding integration tests to jenkinsfile

Change-Id: Ic425456b03f659d118194731023369b099054124
diff --git a/Jenkinsfile b/Jenkinsfile
index 9a39bd7..ea9709a 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -13,8 +13,11 @@
             stage 'Bring up voltha containers'
             sh 'vagrant ssh -c "cd /voltha && source env.sh && docker-compose -f compose/docker-compose-system-test.yml up -d" voltha'
 
+            stage 'Run Integration Tests'
+            sh 'vagrant ssh -c "cd /voltha && source env.sh && make itest" voltha'
+
             currentBuild.result = 'SUCCESS'
-            slackSend channel: '#voltha', color: 'warning', message: "${env.JOB_NAME} (${env.BUILD_NUMBER}) Build success.\n${env.BUILD_URL}"
+            slackSend channel: '#voltha', color: 'good', message: "${env.JOB_NAME} (${env.BUILD_NUMBER}) Build success.\n${env.BUILD_URL}"
         } catch (err) {
             currentBuild.result = 'FAILURE'
             slackSend channel: '#voltha', color: 'danger', message: ":dizzy_face: Build failed ${env.JOB_NAME} (${env.BUILD_NUMBER})\n${env.BUILD_URL}"