From 2f4a41bde5827a3d832711eb422e22cc4fa0ab27 Mon Sep 17 00:00:00 2001
From: Daniel Hornung <d.hornung@indiscale.com>
Date: Mon, 5 Jul 2021 14:48:44 +0200
Subject: [PATCH] MAINT: Failing MySQL tests should not stop the pipeline.

---
 .gitlab-ci.yml | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index ead1dad..fa3975f 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -67,6 +67,8 @@ unittests-mariadb:
 unittests-mysql:
   tags: [ docker ]
   stage: test
+  # Should not stop the pipeline from continuing.
+  allow_failure: true
   services:
     - name: mysql:8.0
       command: ["--default-authentication-plugin=mysql_native_password"]
-- 
GitLab