Skip to content

Commit 42c714a

Browse files
jenkins.ci_night: combine unit and integ tests for coverage report
1 parent f293def commit 42c714a

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

script/jenkins/ci_night/Jenkinsfile

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,9 @@ pipeline {
2121
sh '''#!/bin/bash
2222
export PATH=$PATH:$CONDAPATH
2323
source activate climada_env
24-
python -m coverage run tests_runner.py integ
24+
python -m coverage run --parallel-mode --concurrency=multiprocessing tests_runner.py unit
25+
python -m coverage run --parallel-mode --concurrency=multiprocessing tests_runner.py integ
26+
python -m coverage combine
2527
python -m coverage xml -o coverage.xml
2628
python -m coverage html -d coverage'''
2729
}

0 commit comments

Comments
 (0)