Revision 060fef043244eea3d90ba9672d806592ddf55200 authored by Nikita Manovich on 27 October 2023, 09:34:48 UTC, committed by GitHub on 27 October 2023, 09:34:48 UTC
1 parent 568f0cb
Raw File
developer_guide.md
# Developer guide

Install testing requirements:

```bash
pip install -r requirements/testing.txt
```

Run unit tests:
```
cd cvat/
python manage.py test --settings cvat.settings.testing cvat-cli/
```

Install package in the editable mode:

```bash
pip install -e .
```
back to top