From 6ca739694e496a9f16b558da9b0e2c0da7eecff4 Mon Sep 17 00:00:00 2001 From: DatuX Date: Mon, 24 Jan 2022 11:13:59 +0100 Subject: [PATCH] Updated Development (markdown) --- Development.md | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/Development.md b/Development.md index 50f2651..51bb0e0 100644 --- a/Development.md +++ b/Development.md @@ -68,3 +68,14 @@ Since running the whole suite takes long, you can run one test like this: test_verify (test_verify.TestZfsEncryption) ... Preparing zfs filesystems... ``` +## Automaticly run test on save + +I use `entr` for this: + +```console +root@ws1:/home/psy/zfs_autobackup# find zfs_autobackup/| entr -r ./tests/run_test test_verify.py +``` + +This will reexecute the specified test each time you save the files in your editor. + +