Wtf. How it works 3?

This commit is contained in:
Alex Root Junior 2020-05-27 01:14:54 +03:00
parent a06c8dccca
commit 8ebaffdb5d
2 changed files with 3 additions and 3 deletions

View file

@ -37,7 +37,7 @@ jobs:
- name: Lint code
run: |
poetry run flake8 aiogram tests
poetry run flake8 aiogram
poetry run mypy aiogram
- name: Run tests

View file

@ -78,12 +78,12 @@ black:
.PHONY: flake8
flake8:
$(py) flake8 aiogram tests
$(py) flake8 aiogram
.PHONY: flake8-report
flake8-report:
mkdir -p $(reports_dir)/flake8
$(py) flake8 --format=html --htmldir=$(reports_dir)/flake8 aiogram tests
$(py) flake8 --format=html --htmldir=$(reports_dir)/flake8 aiogram
.PHONY: mypy
mypy: