2125: add exclusions for venv for make check and code_format r=tiftran a=tiftran

Using docker workflow and not using it, has caused some tiny problems.
`make check` and `make code_format` goes into the venv and checks/lints, change so that it excludes the venv file.

ref: #2124 

Co-authored-by: tiftran <ttran@mozilla.com>
This commit is contained in:
bors[bot] 2020-03-09 18:11:18 +00:00 коммит произвёл GitHub
Родитель 977f379a34 50a2faf5a2
Коммит 18c26e7225
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -34,11 +34,11 @@ load_data: migrate update_actions load_initial_data
lint: SHELL:=/bin/bash -O extglob
lint:
docker-compose run app therapist run --disable-git ./!(node_modules|assets|docs)
docker-compose run app therapist run --disable-git ./!(node_modules|assets|docs|venv)
code_format: SHELL:=/bin/bash -O extglob
code_format:
docker-compose run app therapist run --fix --disable-git ./!(node_modules|assets|docs)
docker-compose run app therapist run --fix --disable-git ./!(node_modules|assets|docs|venv)
check: check_migrations lint test
kill: