#9 initial Jenkins pipeline to run the tests in a virtualenv
Merged 7 years ago by dcallagh. Opened 7 years ago by dcallagh.
dcallagh/waiverdb pipeline  into  master

file added
+23
@@ -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/

+         """

+     }

+ }

no initial comment

Hmm I suppose I should put a copyright header on it...

rebased

7 years ago

Pull-Request has been merged by dcallagh

7 years ago
Metadata