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
|
---
hide:
- navigation
---
# Contributing
Firstly, thank you for taking the time to contribute.
The following section describes how you can contribute to the openapi-core project on GitHub.
## Reporting bugs
### Before you report
- Check whether your issue already exists in the [Issue tracker](https://github.com/python-openapi/openapi-core/issues).
- Make sure it is not a support request or question better suited for the [Discussion board](https://github.com/python-openapi/openapi-core/discussions).
### How to submit a report
- Include a clear title.
- Describe your runtime environment with the exact versions you use.
- Describe the exact steps to reproduce the problem, including minimal code snippets.
- Describe the behavior you observed after following the steps, including console outputs.
- Describe the expected behavior and why, including links to documentation.
## Code contribution
### Prerequisites
Install [Poetry](https://python-poetry.org) by following the [official installation instructions](https://python-poetry.org/docs/#installation). Optionally (but recommended), configure Poetry to create a virtual environment in a folder named `.venv` within the root directory of the project:
```console
poetry config virtualenvs.in-project true
```
### Setup
To create a development environment and install the runtime and development dependencies, run:
```console
poetry install
```
Then enter the virtual environment created by Poetry:
```console
poetry shell
```
### Static checks
The project uses static checks with the fantastic [pre-commit](https://pre-commit.com/). Every change is checked on CI, and if it does not pass the tests, it cannot be accepted. If you want to check locally, run the following command to install pre-commit.
To enable pre-commit checks for commit operations in git, enter:
```console
pre-commit install
```
To run all checks on your staged files, enter:
```console
pre-commit run
```
To run all checks on all files, enter:
```console
pre-commit run --all-files
```
Pre-commit check results are also attached to your PR through integration with GitHub Actions.
|