-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
16 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,26 @@ | ||
.PHONY: install test | ||
.PHONY: test | ||
|
||
install-all: install pc-install | ||
|
||
install: | ||
poetry install --sync | ||
|
||
lint: | ||
poetry run poe lint | ||
pc-install: | ||
pre-commit install | ||
|
||
test: | ||
poetry run pytest | ||
update: | ||
poetry update | ||
|
||
update-latest: | ||
poetry up --latest | ||
|
||
checks: pc-run lint test | ||
|
||
pc-run: | ||
pre-commit run -a | ||
|
||
pc-install: | ||
pre-commit install | ||
lint: | ||
poetry run poe lint | ||
|
||
poetry-up: | ||
poetry up --latest | ||
test: | ||
poetry run pytest |