Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
.PHONY: pre-commit lint format

pre-commit:
pre-commit run --all-files

lint:
ruff check .

format:
ruff format .
5 changes: 1 addition & 4 deletions docs/CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,14 +56,11 @@ Use the gcloud credential helper as documented in the [Google Cloud documentatio

## Installation

If you have not installed the package and dependencies yet see [Installation](/README.md#installation).

```md
To use the development tools such as `pytest` or `pylint` use the `dev` option:

```bash
pip3 install -e '.[dev]'
pre-commit install
```

To get an installation with the requirements for all workloads and development, use the argument `[full_dev]`.

Expand Down
Loading