Most of the commands used for development are in Taskfile.yaml
. What is Taskfile?
# This create .venv inside project.
# You might want to enable `Run Using Active Interpreter` to work with mypy vscode plugin
task install
task test
This will run tests that are marked with @pytest.mark.todo
.
task test:todo
You can find all the TODOs in the project by running
task todo
It requires ripgrep to be installed.