##// END OF EJS Templates
jenkinsfile: delete all old files in the workspace...
domruf -
r6507:15a12f2a default
parent child Browse files
Show More
@@ -64,6 +64,7 b' node {'
64 64 def pytests = [:]
65 65 pytests['sqlite'] = {
66 66 ws {
67 deleteDir()
67 68 unstash name: 'kallithea'
68 69 if (isUnix()) {
69 70 sh script: """$activatevirtualenv
@@ -89,6 +90,7 b' node {'
89 90 if (isUnix()) {
90 91 pytests['de'] = {
91 92 ws {
93 deleteDir()
92 94 unstash name: 'kallithea'
93 95 withEnv(['LANG=de_DE.UTF-8',
94 96 'LANGUAGE=de',
@@ -113,6 +115,7 b' node {'
113 115 }
114 116 pytests['mysql'] = {
115 117 ws {
118 deleteDir()
116 119 unstash name: 'kallithea'
117 120 sh """$activatevirtualenv
118 121 pip install --upgrade MySQL-python
@@ -135,6 +138,7 b' node {'
135 138 }
136 139 pytests['postgresql'] = {
137 140 ws {
141 deleteDir()
138 142 unstash name: 'kallithea'
139 143 sh """$activatevirtualenv
140 144 pip install --upgrade psycopg2
General Comments 0
You need to be logged in to leave comments. Login now