From a8a22cd71026a9db986629d5d00c226746d8008d Mon Sep 17 00:00:00 2001 From: Maxime JUST Date: Mon, 8 Dec 2025 11:37:39 +0100 Subject: [PATCH] Fix bugs --- .gitlab-ci.yml | 1 + tox.ini | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 96d5b64..fb9a408 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -34,6 +34,7 @@ py314: - apk add --no-cache gettext - pip install tox --no-cache-dir script: tox -e py314 + allow_failure: true linters: stage: quality-assurance diff --git a/tox.ini b/tox.ini index 04782a1..e83003f 100644 --- a/tox.ini +++ b/tox.ini @@ -14,7 +14,7 @@ deps = coverage commands = python manage.py compilemessages -i .tox -i venv - coverage run --source=api,draw,logs,participation,registration,tfjm ./manage.py test --parallel=1 api/ chat/ draw/ logs/ participation/ registration/ tfjm/ + coverage run --source=api,draw,logs,participation,registration,tfjm ./manage.py test api/ chat/ draw/ logs/ participation/ registration/ tfjm/ coverage report -m [testenv:linters]