Code indexing in gitaly is broken and leads to code not being visible to the user. We work on the issue with highest priority.

Skip to content
Snippets Groups Projects
Commit 87a69bfd authored by GotthardG's avatar GotthardG
Browse files

Fix formatting with black

parent fbcfe86b
No related branches found
No related tags found
No related merge requests found
Pipeline #44573 failed
......@@ -33,11 +33,11 @@ lint:
- pip install pre-commit black flake8
# Run pre-commit hooks
- >
pre-commit run --all-files || (
pre-commit run --all-files || {
echo "Pre-commit formatting failed. Auto-fixing formatting issues with black..." &&
black backend/ &&
exit 1 # If files needed formatting, fail the job. Developer needs to review changes locally.
)
exit 1;
}
deploy:
stage: deploy
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment