From 1409017c42d76862c90f14f52d8b6bc9377ed914 Mon Sep 17 00:00:00 2001 From: Ralph Bean Date: Jan 18 2018 12:10:33 +0000 Subject: Fix pylint in Jenkins. I noticed that the pylint step in our jenkins job is failing, and I think it might be that it is using the python3 pylint which is unable to find our python2 deps at runtime. --- diff --git a/Jenkinsfile b/Jenkinsfile index 048ff81..7ee2d97 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -12,7 +12,7 @@ node('fedora') { sh 'flake8' } stage('Invoke Pylint') { - sh 'pylint --reports=n waiverdb' + sh 'pylint-2 --reports=n waiverdb' } stage('Build Docs') { sh 'make -C docs html'