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" ...