Resolve "Celery task deduplication"

This commit is contained in:
sonny 2020-03-24 19:40:33 +01:00
parent 7c888c1461
commit a3a2033e37
4 changed files with 35 additions and 10 deletions

View file

@ -82,9 +82,9 @@ python linting:
- source env/bin/activate
- pip install -r requirements/gitlab.txt
script:
- isort -rc src/ --check-only
- black -l 88 --check src/
- autoflake --check --remove-all-unused-imports --ignore-init-module-imports --recursive src/
- isort src/ --check-only --recursive
- black src/ --line-length 88 --check
- autoflake src/ --check --recursive --remove-all-unused-imports --ignore-init-module-imports
deploy:
stage: deploy