From 79edc15117946b88b88e466bcb26c13321a2d29a Mon Sep 17 00:00:00 2001 From: Oscar Krause Date: Fri, 21 Mar 2025 14:49:38 +0100 Subject: [PATCH] .gitlab-ci.yml --- .gitlab-ci.yml | 16 ++++++++++------ 1 file changed, 10 insertions(+), 6 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index f93d41d..82118ce 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,13 +1,17 @@ - - -test: +.test: image: python:3.12 stage: test before_script: - pip install -r requirements.txt - cd src/test - script: - - python -m pytest test.py --junitxml=report.xml artifacts: reports: - junit: ['**/report.xml'] + junit: [ '**/report.xml' ] + +test_decrypt: + extends: .test + script: [ python -m pytest test_decrypt.py --junitxml=report.xml ] + +test_config_token: + extends: .test + script: [ python -m pytest test_config_token.py --junitxml=report.xml ] \ No newline at end of file