From c1746a9d507ab3716d97c8f26b1d9d8583caff7f Mon Sep 17 00:00:00 2001 From: Zbynek Roubalik Date: Wed, 17 May 2023 15:56:21 +0200 Subject: [PATCH] chore: add `sequetial` section to e2e tests Readme (#4545) Signed-off-by: Zbynek Roubalik --- tests/README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/README.md b/tests/README.md index 417e4277bbe..ea4ab5b7552 100644 --- a/tests/README.md +++ b/tests/README.md @@ -25,7 +25,7 @@ go test -v -tags e2e ./scalers/azure_queue/azure_queue_test.go # Assumes that se > **Note** > On macOS you might need to set following environment variable in order to run the tests: `GOOS="darwin"` > -> eg. `GOOS="darwin" go test -v tags e2e ...` +> eg. `GOOS="darwin" go test -v -tags e2e ...` Refer to [this](https://pkg.go.dev/testing) for more information about testing in `Go`. @@ -66,6 +66,7 @@ Test are split in different folders based on what it's testing: - `internals`: KEDA internals (ie: HPA related stuff). - `scalers`: Anything related with scalers. - `secret-providers`: Anything related with how KEDA gets the secrets for working (ie: pod-identity, vault, etc). +- `sequential`: Tests that can't be run in parallel with other tests (eg. the test modifies KEDA installation or configuration, etc.). #### ⚠⚠ Important: ⚠⚠ >