Skip to content

Latest commit

 

History

History
31 lines (20 loc) · 1005 Bytes

File metadata and controls

31 lines (20 loc) · 1005 Bytes

Contributing

Found a bug? Want to fix an open issue? Got an idea for an improvement? Please contribute!

All contributions are welcome, from absolutely anyone. Just open a PR, Issue or Discussion (as relevant) - no need to ask beforehand. If you're going to work on an issue, it's a good idea to say so on the issue, to make sure work isn't duplicated.

Because this repository is a backport of the django.tasks package, notable improvements should be raised upstream before being included here. This repository will still serve as a place for discussions.

Development set up

Fork, then clone the repo:

git clone git@github.com:your-username/django-tasks.git

Set up a venv:

python -m venv .venv
source .venv/bin/activate
python -m pip install -e --group dev

Then you can run the tests with the just command runner:

just test

If you don't have just installed, you can look in the justfile for the commands that are run.