You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
794 B
22 lines
794 B
2 years ago
|
### Что здесь лежит?
|
||
|
- в директории `merge` -- типизированный код с реализацией
|
||
|
сортировки слиянием;
|
||
|
- в директории `tests` -- соответственно, тесты;
|
||
|
|
||
|
### Как запускать?
|
||
|
|
||
|
Желательно установить [mypy](https://github.com/python/mypy) или даже
|
||
|
[pyright](https://github.com/microsoft/pyright) и проверять типизацию
|
||
|
ими перед запусками:
|
||
|
```sh
|
||
|
$ mypy --install-types --show-error-codes --pretty .
|
||
|
```
|
||
|
|
||
|
_*Выясните самостоятельно:*_
|
||
|
что делают флаги `--install-types`, `--show-error-codes`, `--pretty`?
|
||
|
|
||
|
Для запуска тестов:
|
||
|
```sh
|
||
|
$ python -m unittest discover -v tests/
|
||
|
```
|