From a22de17f4406d2285062b544a52627f9fd77d65d Mon Sep 17 00:00:00 2001
From: Timm Fitschen <t.fitschen@indiscale.com>
Date: Thu, 16 Sep 2021 22:56:54 +0200
Subject: [PATCH] TST: fix tests for mysql 8

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

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index bec1bb6..10528f8 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -73,6 +73,7 @@ unittests-mysql-8:
       command: ["--default-authentication-plugin=mysql_native_password"]
 
   script:
+    - sed "s/NO_AUTO_CREATE_USER,//" -i tests/example.dump.sql
     - make pipeline-test SQL_HOST=mysql
 
 # Run the unit tests with MySQL 5
@@ -88,6 +89,7 @@ unittests-mysql-5:
   script:
     # remove autotap because the checks of (autogenerated) names of constraints
     # and the checks of column default values don't work with mysql
+    - rm tests/test_autotap.sql
     - make pipeline-test SQL_HOST=mysql
 
 ######## Deploy ########
-- 
GitLab