From 51086c4995ef8e4f75a2279e5afd3162cdf03b13 Mon Sep 17 00:00:00 2001 From: Aaron Russell Date: Thu, 7 Dec 2023 09:26:43 +0000 Subject: [PATCH] Added more on tests completing in a reasonable time --- docs/standards/testing.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/standards/testing.md b/docs/standards/testing.md index 2848e585..fe5c6342 100644 --- a/docs/standards/testing.md +++ b/docs/standards/testing.md @@ -69,6 +69,8 @@ Tests such as unit/integration tests should complete in a reasonable time to hel Other tests such as soak that don't block deployments can be completed in a greater length of time. +If tests completion time significantly increases when a code change is made, then a test should be treated as a failing test. + ### You MUST use automated security testing Automated security testing can help understand where your code may have any security issues. These tests should be be ran as part of your pipelines to help identify issues and block the deployment of insecure code.