From 9974bf568591ef651f71fda77639333ad178544e Mon Sep 17 00:00:00 2001 From: Oscar Krause Date: Wed, 26 Mar 2025 12:09:11 +0100 Subject: [PATCH] fixes --- .gitlab-ci.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index fc271c0..02384af 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -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" ...