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