From be64fba2acd8bfa43c6fa363e095ce451c368950 Mon Sep 17 00:00:00 2001 From: Dan Callaghan Date: Mar 01 2017 16:38:23 +0000 Subject: initial Jenkins pipeline to run the tests in a virtualenv --- diff --git a/Jenkinsfile b/Jenkinsfile new file mode 100644 index 0000000..6fedc2a --- /dev/null +++ b/Jenkinsfile @@ -0,0 +1,23 @@ +/* + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + */ + +node('rcm-tools-jslave-rhel-7') { + checkout scm + stage('Test') { + sh """ + virtualenv . + source bin/activate + pip install -r requirements.txt + py.test tests/ + """ + } +}