test-driver: add persistent history
across sessions of interactive testing
This commit is contained in:
parent
0fa6394cbb
commit
3a7597b8a6
1 changed files with 7 additions and 1 deletions
|
@ -106,7 +106,13 @@ def main() -> None:
|
|||
args.keep_vm_state,
|
||||
) as driver:
|
||||
if args.interactive:
|
||||
ptpython.repl.embed(driver.test_symbols(), {})
|
||||
history_dir = os.getcwd()
|
||||
history_path = os.path.join(history_dir, ".nixos-test-history")
|
||||
ptpython.repl.embed(
|
||||
driver.test_symbols(),
|
||||
{},
|
||||
history_filename=history_path,
|
||||
)
|
||||
else:
|
||||
tic = time.time()
|
||||
driver.run_tests()
|
||||
|
|
Loading…
Reference in a new issue