Avoid running flake8 on cache, etc.
This commit is contained in:
parent
637650245e
commit
d19bc66c61
2 changed files with 2 additions and 2 deletions
|
@ -18,7 +18,7 @@ test:
|
|||
script:
|
||||
- poetry run isort src tests --check
|
||||
- poetry run black src tests --check
|
||||
- poetry run flake8
|
||||
- poetry run flake8 src tests
|
||||
- poetry run pytest
|
||||
- poetry run coverage run --source=pricehist -m pytest
|
||||
- poetry run coverage report
|
||||
|
|
2
Makefile
2
Makefile
|
@ -34,4 +34,4 @@ install-pre-commit-hook: ## Install the git pre-commit hook
|
|||
pre-commit: ## Checks to run before each commit
|
||||
poetry run isort src tests --check
|
||||
poetry run black src tests --check
|
||||
poetry run flake8
|
||||
poetry run flake8 src tests
|
||||
|
|
Loading…
Add table
Reference in a new issue