From 497173b1119f0433efb6270af001ad11151e6b11 Mon Sep 17 00:00:00 2001 From: Oscar Krause Date: Wed, 26 Mar 2025 11:49:10 +0100 Subject: [PATCH] setup test matrix --- .gitlab-ci.yml | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 82118ce..9cd1a50 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -8,10 +8,12 @@ reports: junit: [ '**/report.xml' ] -test_decrypt: +test: 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 + parallel: + matrix: + - FILE: + - test_config_token.py + - pytest test_decrypt.py + - test_instance_token.py + script: [ python -m pytest $FILE --junitxml=report.xml ]