diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index f7a18a1f21d4593aebb537f8b9dd94b3ac4d5d03..cdadc318c0b8ba30d26be16325cf33dc9e6c246c 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -107,7 +107,7 @@ pre-commit:hooks:
   image: $DOCKER_IMAGE/$PYTHON_VERSION:latest
   script:
     - poetry install
-    - poetry run pytest
+    - poetry run pytest tests/unit
 
 tests:3.7:
   extends: .tests
@@ -145,6 +145,12 @@ tests:3.11:cov:
         coverage_format: cobertura
         path: coverage.xml
 
+tests:3.11:integration:
+  extends: .tests
+  script:
+    - poetry install
+    - poetry run pytest tests/integration
+
 .image:
   stage: package
   tags: [docker]