Jan Remmet
Jan Remmet
The boot_expression feature for u-boot was deprecated to sync barebox with features and to allow to connect to a running bootloader. Readd the feature for both bootloaders and use the...
Usecase: a dict with keys where the name shows which kind of validator should be used to validate it. e.g. ``` { "val_foo": 1 "val_bar": 2 "str_foo: "hello" "str_bar": "world"...
We want to merge html reports with the same test names. Before pytest-html 4 it works nice :) But now we lost the infos because they have the same key:...
pytests pytester can be used to run pytests inside pytest. This results in nested calls of pytest_configure and so multiple starts and stops of the StepLogger. Only start StepLogger if...
We use [pytester](https://docs.pytest.org/en/stable/reference/reference.html#pytester) to test our hooks together with labgrid. Since v24.0 we run into errors because `StepLogger.start` is called again by pytester via `pytest_configure` hook. minimal example: test_mini.py ```...