Skip to content

Latest commit

 

History

History
34 lines (18 loc) · 571 Bytes

DEVELOPMENT.rst

File metadata and controls

34 lines (18 loc) · 571 Bytes

Development

This project uses uv to manage a virtualenv.

All the commands will only install things locally to this repository.

To run mypy against this plugin:

> ./types

To run mypy only against the example Django app:

> ./types example

To clear the cache first:

> CLEAR_MYPY_CACHE=1 ./types

To run tests:

> ./test.sh

To run tests such that breakpoints work:

> ./test.sh --mypy-same-process -s

To activate the virtualenv in your current shell:

> source dev activate

To build the docs locally:

> ./dev docs view