1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136
|
Contributing to id
==================
Thank you for your interest in contributing to `id`!
The information below will help you set up a local development environment,
as well as performing common development tasks.
## Requirements
`id`'s only development environment requirement *should* be Python 3.8
or newer. Development and testing is actively performed on macOS and Linux,
but Windows and other supported platforms that are supported by Python
should also work.
If you're on a system that has GNU Make, you can use the convenience targets
included in the `Makefile` that comes in the `id` repository detailed
below. But this isn't required; all steps can be done without Make.
## Development steps
First, clone this repository:
```bash
git clone https://github.com/di/id
cd id
```
Then, use one of the `Makefile` targets to run a task. The first time this is
run, this will also set up the local development virtual environment, and will
install `id` as an editable package into this environment.
Any changes you make to the `id` source tree will take effect
immediately in the virtual environment.
### Linting
You can lint locally with:
```bash
make lint
```
`id` is automatically linted and formatted with a collection of tools:
* [`black`](https://github.com/psf/black): Code formatting
* [`isort`](https://github.com/PyCQA/isort): Import sorting, ordering
* [`ruff`](https://github.com/charliermarsh/ruff): PEP-8 linting, style enforcement
* [`mypy`](https://mypy.readthedocs.io/en/stable/): Static type checking
* [`bandit`](https://github.com/PyCQA/bandit): Security issue scanning
* [`interrogate`](https://interrogate.readthedocs.io/en/latest/): Documentation coverage
To automatically apply any lint-suggested changes, you can run:
```bash
make reformat
```
### Testing
You can run the tests locally with:
```bash
make test
```
You can also filter by a pattern (uses `pytest -k`):
```bash
make test TESTS=test_version
```
To test a specific file:
```bash
make test T=path/to/file.py
```
`id` has a [`pytest`](https://docs.pytest.org/)-based unit test suite,
including code coverage with [`coverage.py`](https://coverage.readthedocs.io/).
### Releasing
**NOTE**: If you're a non-maintaining contributor, you don't need the steps
here! They're documented for completeness and for onboarding future maintainers.
Releases of `id` are managed with [`bump`](https://github.com/di/bump)
and GitHub Actions.
```bash
# default release (patch bump)
make release
# override the default
# vX.Y.Z -> vX.Y.Z-rc.0
make release BUMP_ARGS="--pre rc.0"
# vX.Y.Z -> vN.0.0
make release BUMP_ARGS="--major"
```
`make release` will fail if there are any untracked changes in the source tree.
If `make release` succeeds, you'll see an output like this:
```
RUN ME MANUALLY: git push origin main && git push origin vX.Y.Z
```
Run that last command sequence to complete the release.
## Development practices
Here are some guidelines to follow if you're working on a new feature or changes to
`id`'s internal APIs:
* *Keep the `id` APIs as private as possible*. Nearly all of `id`'s
APIs should be private and treated as unstable and unsuitable for public use.
If you're adding a new module to the source tree, prefix the filename with an
underscore to emphasize that it's an internal (e.g., `id/_foo.py` instead of
`id/foo.py`).
* *Perform judicious debug logging.* `id` uses the standard Python
[`logging`](https://docs.python.org/3/library/logging.html) module. Use
`logger.debug` early and often -- users who experience errors can submit better
bug reports when their debug logs include helpful context!
* *Update the [CHANGELOG](./CHANGELOG.md)*. If your changes are public or result
in changes to `id`'s CLI, please record them under the "Unreleased" section,
with an entry in an appropriate subsection ("Added", "Changed", "Removed", or "Fixed").
* Ensure your commits are signed off, as `id` uses the
[DCO](https://en.wikipedia.org/wiki/Developer_Certificate_of_Origin).
You can do it using `git commit -s`, or `git commit -s --amend` if you want to
amend already existing commits.
|