diff --git a/tests/modules/Jenkinsfile b/tests/modules/Jenkinsfile index dd50feb6c..3fd32939a 100644 --- a/tests/modules/Jenkinsfile +++ b/tests/modules/Jenkinsfile @@ -21,13 +21,15 @@ def runTests() { sh "pip install --user -e .[css,dev]" } stage ('Run tests') { - withCredentials([string(credentialsId: 'proxymap', variable: 'PROXYMAP')]) { - sh ''' - TESTALL=1 py.test -v --cov=dosagelib --cov-report xml \ - --alluredir=allure-data \ - --tb=short -n10 --junitxml=junit.xml \ - tests/modules/check_comics.py || true - ''' + timeout(time: 12, unit: 'HOURS') { + withCredentials([string(credentialsId: 'proxymap', variable: 'PROXYMAP')]) { + sh ''' + TESTALL=1 py.test -v --cov=dosagelib --cov-report xml \ + --alluredir=allure-data \ + --tb=short -n10 --junitxml=junit.xml \ + tests/modules/check_comics.py || true + ''' + } } } stage('Report') {