Revision 539276395ea2f921bab79cfa6266f224fcdda7d0 authored by Andrey Zhavoronkov on 06 November 2023, 07:19:02 UTC, committed by GitHub on 06 November 2023, 07:19:02 UTC
2 parent s 9819e6d + 7726281
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