Skip to content

Commit

Permalink
added new build command
Browse files Browse the repository at this point in the history
  • Loading branch information
hitblast committed Aug 8, 2024
1 parent a1a9b63 commit d49388f
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
5 changes: 4 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,7 @@ test:
@poetry run pytest .

install:
@poetry install --sync
@poetry install --sync

build:
@poetry build --verbose --no-interaction
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -136,6 +136,9 @@ Later, you can run the tests provided with the project using the following comma
```sh
# Run unit tests.
$ make test # same as `poetry run pytest .`

# Build sdist and wheel packages for distributing the project.
$ make build # same as `poetry build --verbose --no-interaction`
```

<br>
Expand Down

0 comments on commit d49388f

Please sign in to comment.