6
0
mirror of https://github.com/ChristianLight/tutor.git synced 2024-09-27 19:59:02 +00:00
tutor/tutor/commands
Régis Behmo 33e4f33afe feat: strongly typed hooks
Now that the mypy bugs have been resolved, we are able to define more precisely
and cleanly the types of Actions and Filters.

Moreover, can now strongly type named actions and hooks (in consts.py). With
such a strong typing, we get early alerts of hooks called with incorrect
arguments, which is nothing short of awesome :)

This change breaks the hooks API by removing the `context=...` argument. The
reason for that is that we cannot insert arbitrary arguments between `P.args,
P.kwargs`: https://peps.python.org/pep-0612/#the-components-of-a-paramspec

> A function declared as def inner(a: A, b: B, *args: P.args, **kwargs:
> P.kwargs) -> R has type Callable[Concatenate[A, B, P], R]. Placing
> keyword-only parameters between the *args and **kwargs is forbidden.

Getting the documentation to build in nitpicky mode is quite difficult... We
need to add `nitpick_ignore` to the docs conf.py, otherwise sphinx complains
about many missing class references. This, despite upgrading almost all doc
requirements (except docutils).
2022-11-15 14:58:36 +01:00
..
upgrade fix: change kubectl wait to look at deployments not pods 2022-07-25 22:46:45 +02:00
__init__.py Move command modules to dedicated directory 2019-05-29 09:53:54 +02:00
cli.py feat: strongly typed hooks 2022-11-15 14:58:36 +01:00
compose.py feat: strongly typed hooks 2022-11-15 14:58:36 +01:00
config.py fix: get rid of the tutor config render command 2022-06-03 12:54:27 +02:00
context.py refactor: add code coverage, cover CLI commands with tests 2022-01-04 13:40:33 +01:00
dev.py feat: add -m/--mount option to dev quickstart 2022-07-29 19:53:02 +02:00
images.py feat: strongly typed hooks 2022-11-15 14:58:36 +01:00
k8s.py fix: change kubectl wait to look at deployments not pods 2022-07-25 22:46:45 +02:00
local.py fix: bind-mount in dev-specific services 2022-07-29 19:53:02 +02:00
plugins.py feat: add dev/local copyfrom commands 2022-04-24 09:51:46 +02:00