You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
# 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 .
|
|
```
|