Skip to content
This repository has been archived by the owner on May 17, 2024. It is now read-only.

Latest commit

 

History

History
27 lines (21 loc) · 558 Bytes

CONTRIBUTING.md

File metadata and controls

27 lines (21 loc) · 558 Bytes

Most of the commands used for development are in Taskfile.yaml. What is Taskfile?

Setup

# This create .venv inside project.
# You might want to enable `Run Using Active Interpreter` to work with mypy vscode plugin
task install

Test

task test

This will run tests that are marked with @pytest.mark.todo.

task test:todo

TODO

You can find all the TODOs in the project by running

task todo

It requires ripgrep to be installed.