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.
programming-basics-2022/03/README.md

22 lines
794 B

### Что здесь лежит?
- в директории `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/
```