docs(project): Add `test` to management command

This commit is contained in:
Rob Hudson 2021-04-14 08:51:16 -07:00 коммит произвёл GitHub
Родитель 43ba6f0ab1
Коммит 1fa5b88346
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -251,7 +251,7 @@ ipdb.set_trace()
Then invoke the test using its full path:
```sh
./manage.py experimenter.some_module.tests.some_test_file.SomeTestClass.test_some_thing
./manage.py test experimenter.some_module.tests.some_test_file.SomeTestClass.test_some_thing
```
And you will enter an interactive iPython shell at the point where you placed the ipdb snippet, allowing you to introspect variables and call methods