From 7e9637e49652fffdf23be4dca992a59c2b380a22 Mon Sep 17 00:00:00 2001 From: Julian Stirling Date: Sat, 20 Dec 2025 16:30:10 +0000 Subject: [PATCH] Run new integration suite in CI --- .gitlab-ci.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 378fda4a..f46e56af 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -218,6 +218,16 @@ server_lifecycle_test: script: - tests/lifecycle_test/testfile.py +# Pytest integration tests, seperate from the lifecycle test +integration_tests: + stage: integration + extends: .python + script: + - pytest tests/integration_tests + # Don't report this coverage to in the Merge Request or combine with other + # coverage. + + pages: needs: - job: build-docs