nixos/test-driver: separate the subtest log call

We do not use the generic "nested" function but introduce a separate
subtest log call. This will later allow us to track subtests and account
logs to specific subtests.
This commit is contained in:
Stefan Hertrampf
2024-04-05 08:42:30 +02:00
parent ee1428c654
commit 0d015895de
2 changed files with 6 additions and 1 deletions

View File

@@ -99,7 +99,7 @@ class Driver:
def subtest(self, name: str) -> Iterator[None]:
"""Group logs under a given test name"""
with rootlog.nested("subtest: " + name):
with rootlog.subtest(name):
try:
yield
return True