diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index bec1bb649274ffb770ed385f3f8f7b81e9710d38..10528f8da015000632d1d4264a09ad2dd195e45d 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 ########