Skip to content

Latest commit

 

History

History
71 lines (49 loc) · 2.77 KB

CONTRIBUTING.md

File metadata and controls

71 lines (49 loc) · 2.77 KB

Contributing

Contributions are encouraged! Please use the issue page to submit feature requests or bug reports. Issues with attached PRs will be given priority and have a much higher likelihood of acceptance. Please also open an issue and associate it with any submitted PRs. That said, the aim is to keep this library as lightweight as possible. Only features with broad-based use cases will be considered.

We are actively seeking additional maintainers. If you're interested, please contact me.

Installation

django-routines uses Poetry for environment, package, and dependency management:

poetry install

Documentation

django-routines documentation is generated using Sphinx with the readthedocs theme. Any new feature PRs must provide updated documentation for the features added. To build the docs run doc8 to check for formatting issues then run Sphinx:

cd ./doc
poetry run doc8 --ignore-path build --max-line-length 100
poetry run make html

Static Analysis

django-routines uses ruff for Python linting, header import standardization and code formatting. mypy and pyright are used for static type checking. Before any PR is accepted the following must be run, and static analysis tools should not produce any errors or warnings. Disabling certain errors or warnings where justified is acceptable:

./check.sh

To run static analysis without automated fixing you can run:

./check.sh --no-fix

Running Tests

django-routines is set up to use pytest to run unit tests. All the tests are housed in tests/tests.py. Before a PR is accepted, all tests must be passing and the code coverage must be at 100%. A small number of exempted error handling branches are acceptable.

To run the full suite:

poetry run pytest

To run a single test, or group of tests in a class:

poetry run pytest <path_to_tests_file>::ClassName::FunctionName

For instance, to run all tests in Tests, and then just the test_command test you would do:

poetry run pytest tests/tests.py::Tests
poetry run pytest tests/tests.py::Tests::test_command