From a273240cfa0a8f26c38f5deb31e7df3b3f073845 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20P=C3=A9ters?= Date: Thu, 1 Jul 2021 23:15:59 +0200 Subject: [PATCH] jenkins: do not run tests against django 1.11 anymore (fix) (#55333) --- Jenkinsfile | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index f983d6c9d..3d493a0e3 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -10,10 +10,12 @@ pipeline { } post { always { - utils = new Utils() - utils.publish_coverage('coverage.xml') - utils.publish_coverage('coverage.xml') - utils.publish_coverage_native('index.html') + script { + utils = new Utils() + utils.publish_coverage('coverage.xml') + utils.publish_coverage_native('index.html') + utils.publish_pylint('pylint.out') + } mergeJunitResults() } }