Skip to content

Commit

Permalink
Tidy makefile. Clarify README.
Browse files Browse the repository at this point in the history
  • Loading branch information
gwww committed Aug 22, 2024
1 parent 2b84822 commit 881b0de
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
.PHONY: install clean isort lint debug test status
.PHONY: clean setup format check lint run status status

clean:
find . -name '*.pyc' -exec rm -f {} +
Expand All @@ -8,7 +8,7 @@ clean:
find . -name '.pytest_cache' -exec rm -rf {} +
rm -rf build dist *.egg-info

install:
setup:
uv sync

format:
Expand Down
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -208,8 +208,9 @@ make test # to ensure everything installed properly

There is a `Makefile` in the root directory. The `make` command
followed by one of the targets in the `Makefile` can be used. If you don't
have or wish to use `make` the `Makefile` serves as examples of common
commands that can be run.
have or wish to use `make` the `Makefile` serves as examples of
commands that are used for code quality in this project. Those commands are
also run on pushes and pull requests.

## Reporting a Bug

Expand Down

0 comments on commit 881b0de

Please sign in to comment.