diff --git a/.gitlab/test.yml b/.gitlab/test.yml
index 5644423654bcef823b207fd8d499f7ce0a730560..65fcbfaf488ee73ad7a78ad2199913917d476e50 100644
--- a/.gitlab/test.yml
+++ b/.gitlab/test.yml
@@ -57,3 +57,33 @@ test_spm_mpi_dist:
   dependencies:
     - build_spm_mpi
   <<: *test_script_mpi
+
+test_wrapper_seq:
+  variables:
+    VERSION: seq
+  parallel:
+    matrix:
+      - RUN: python
+        TESTS_RESTRICTION: "-R \"^python_\""
+      - RUN: fortran
+        TESTS_RESTRICTION: "-R \"^fortran_\""
+      - RUN: julia
+        TESTS_RESTRICTION: "-R \"^julia_\""
+  dependencies:
+    - build_spm_seq
+  <<: *test_script_seq
+
+test_wrapper_mpi:
+  variables:
+    VERSION: mpi
+  parallel:
+    matrix:
+      - RUN: python
+        TESTS_RESTRICTION: "-R \"^python_\""
+      - RUN: fortran
+        TESTS_RESTRICTION: "-R \"^fortran_\""
+      - RUN: julia
+        TESTS_RESTRICTION: "-R \"^julia_\""
+  dependencies:
+    - build_spm_mpi
+  <<: *test_script_mpi