This commit is contained in:
Emmanuel Cazenave 2018-04-25 17:51:48 +02:00
parent d41c60a8b3
commit 924e82d49b
2 changed files with 5 additions and 2 deletions

3
Jenkinsfile vendored
View File

@ -20,8 +20,7 @@ pipeline {
}
post {
always {
junit 'test_django18_results.xml'
junit 'test_django111_results.xml'
junit '*_results.xml'
script {
utils = new Utils()
utils.publish_cobertura_report('**/coverage.xml')

View File

@ -32,6 +32,10 @@ def assets_base():
z.close()
def test_fail():
assert False
def test_no_menu_if_not_enabled(app, admin_user):
app = login(app)
resp = app.get('/manage/', status=200)