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 ]