This commit is contained in:
Oscar Krause 2025-03-26 12:09:11 +01:00
parent fd8b2a41f6
commit 9974bf5685

View File

@ -1,6 +1,7 @@
.test: .test:
image: python:3.12 image: python:3.12
stage: test stage: test
allow_failure: true
before_script: before_script:
- pip install -r requirements.txt - pip install -r requirements.txt
- pip install pytest pytest-cov pytest-custom_exit_code httpx - pip install pytest pytest-cov pytest-custom_exit_code httpx
@ -18,7 +19,7 @@ test:
matrix: matrix:
- TEST_FILE: - TEST_FILE:
- test_config_token.py - test_config_token.py
- pytest test_decrypt.py - test_decrypt.py
- test_instance_token.py - test_instance_token.py
script: script:
- echo "Testing $TEST_FILE" ... - echo "Testing $TEST_FILE" ...