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]