From 11acd1a86dd401c2ffb5fcfd2da1a6758ddefcf9 Mon Sep 17 00:00:00 2001 From: Jean-Philippe Evrard Date: Sat, 26 Oct 2024 00:03:13 +0200 Subject: [PATCH] Clarify features for e2e test (#995) Without this, ppl might be wondering how to use e2e test, especially on slower machines. Signed-off-by: Jean-Philippe Evrard --- CONTRIBUTING.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 23aad5afc..644809cf4 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -233,6 +233,16 @@ A test-run with `kind` and `make` can be done with the following command: make e2e-test ``` +You can alter test behaviour by passing arguments to this command. +A few examples below: + +```shell +# Run only TestE2EWithSignal test for the kubernetes version named "current" (see kind file) +make e2e-test ARGS="-run ^TestE2EWithSignal/current" +# Run all tests but make sure to extend the timeout, for slower machines. +make e2e-test ARGS="-timeout 1200s' +``` + ## Publishing a new kured release ### Prepare Documentation