From fd6cc30b34d56071a4c41d105646593cbc51719e Mon Sep 17 00:00:00 2001 From: Dan Rollo Date: Thu, 12 Nov 2020 17:13:08 -0500 Subject: [PATCH] try removing dev requirements before self-scan --- Jenkinsfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Jenkinsfile b/Jenkinsfile index be9eb7f..3783e15 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -22,6 +22,8 @@ dockerizedBuildPipeline( # development only requirements pip3 install -r requirements-dev.txt python -m xmlrunner discover -o test-results/ + # hot mess to uninstall dev requirements before we self scan. probably should move to pipenv + pip3 uninstall -r requirements-dev.txt ''' }, deployBranch: 'main',