[PATCH 1/8] t7900: remove register dependency
From: Kristoffer Haugsbakk <hidden>
Date: 2023-10-14 21:46:58
Subsystem:
the rest · Maintainer:
Linus Torvalds
`stop from existing schedule` depends on the preceding test `start from
empty cron table` because the preceding test registers the
repository. Without it, the “stop” test fails because `config` fails to
get the repository:
git config --get --global --fixed-value maintenance.repo "$(pwd)"
Remove this dependency by setting up the state and tearing it down
independently.
Signed-off-by: Kristoffer Haugsbakk <redacted>
---
t/t7900-maintenance.sh | 3 +++
1 file changed, 3 insertions(+)
diff --git a/t/t7900-maintenance.sh b/t/t7900-maintenance.sh
index 487e326b3fa..ca86b2ba687 100755
--- a/t/t7900-maintenance.sh
+++ b/t/t7900-maintenance.sh@@ -588,6 +588,7 @@ test_expect_success 'start --scheduler=<scheduler>' ' ' test_expect_success 'start from empty cron table' ' + test_when_finished git maintenance unregister && GIT_TEST_MAINT_SCHEDULER="crontab:test-tool crontab cron.txt" git maintenance start --scheduler=crontab && # start registers the repo
@@ -599,6 +600,8 @@ test_expect_success 'start from empty cron table' ' ' test_expect_success 'stop from existing schedule' ' + test_when_finished git maintenance unregister && + git maintenance register && GIT_TEST_MAINT_SCHEDULER="crontab:test-tool crontab cron.txt" git maintenance stop && # stop does not unregister the repo
--
2.42.0.2.g879ad04204