Skip to content

Latest commit

 

History

History
98 lines (66 loc) · 4.33 KB

CONTRIBUTING.md

File metadata and controls

98 lines (66 loc) · 4.33 KB

Contribution Guide

This project is open source and community driven. As such we encourage code contributions of all kinds. Some areas you can contribute in:

  1. Improve the stubs
  2. Sync stubs with the latest version of the DRF
  3. Improve plugin code and extend its capabilities
  4. Write tests
  5. Update dependencies
  6. Fix and remove things from our scripts/stubtest/allowlist_todo.txt

Type stubs in .pyi files should follow coding conventions from typeshed project.

Tutorials

If you want to start working on this project, you will need to get familiar with python typings. The Mypy documentation offers an excellent resource for this, as well as the python official documentation:

Additionally, the following resources might be useful:

Dev setup

Repository Setup

As a first step you will need to fork this repository and clone your fork locally. In order to be able to continously sync your fork with the origin repository's master branch, you will need to set up an upstream master. To do so follow this official github guide.

Dependency Setup

After your repository is setup you will then need to create and activate a git ignored virtual env, e.g.:

python3 -m venv .venv
source .venv/bin/activate

Then install the dev requirements:

SETUPTOOLS_ENABLE_FEATURES=legacy-editable pip install -r ./requirements.txt

Finally, install the pre-commit hooks:

pre-commit install

Testing and Linting

We use mypy, pytest, ruff, and black for quality control. All tools except pytest are executed using pre-commit when you make a commit. To ensure there are not formatting or typing issues in the entire repository you can run:

pre-commit run --all-files

NOTE: This command will not only lint but also modify files - so make sure to commit whatever changes you've made before hand. You can also run pre-commit per file or for a specific path, simply replace "--all-files" with a target (see this guide for more info).

To execute the unit tests, simply run:

pytest

Testing stubs with stubtest

Run bash ./scripts/stubtest.sh to test that stubs and sources are in-line.

We have two special files to allow errors:

  1. scripts/stubtest/allowlist.txt where we store things that we really don't care about: hacks, DRF internal utility modules, things that are handled by our plugin, things that are not representable by type system, etc
  2. scripts/stubtest/allowlist_todo.txt where we store all errors there are right now. Basically, this is a TODO list: we need to work through this list and fix things (or move entries to real allowlist.txt). In the end, ideally we can remove this file

You might also want to disable incremental mode while working on stubtest changes. This mode leads to several known problems (stubs do not show up or have strange errors).

Important: right now we only run stubtest on Python 3.12 (because it is the latest released version at the moment), any other versions might generate different outputs. Any work to create per-version allowlists is welcome.

Submission Guidelines

The workflow for contributions is fairly simple:

  1. fork and setup the repository as in the previous step.
  2. create a local branch.
  3. make whatever changes you want to contribute.
  4. ensure your contribution does not introduce linting issues or breaks the tests by linting and testing the code.
  5. make a pull request with an adequate description.