Skip to content

Commit 50687f6

Browse files
Update patterns/everything-as-code.md
Co-authored-by: Alex Young <[email protected]>
1 parent 41a7db0 commit 50687f6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

patterns/everything-as-code.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ While effective testing is the best way to detect bugs or non-functional problem
7171
- Is the code layout and structure consistent with agreed style and other code? (please see [enforce code formatting](enforce-code-formatting.md))
7272
- Would it easily allow future modification to meet slightly different needs, e.g. ten times the required data size or throughput?
7373
- Is it [built for testability](../practices/structured-code.md)?
74-
- Are the automated tests positioned appropriately in the [test pyramid](https://martinfowler.com/articles/practical-test-pyramid.html), triggered appropriately in CI builds, etc?
74+
- Are the automated tests positioned appropriately in the [test pyramid](https://martinfowler.com/articles/practical-test-pyramid.html), triggered appropriately in CI builds, and do they block the build when they fail?
7575
- Are there any missing [automated tests](../practices/testing.md), e.g. edge-cases that have not yet been considered?
7676
- Have the non-functional requirements been considered (performance, scalability, robustness, etc)?
7777
- Are common security issues guarded against (e.g. [OWASP Top 10](https://owasp.org/www-project-top-ten/))? Including:

0 commit comments

Comments
 (0)