diff --git a/docs/reference/test-encyclopedia.mdx b/docs/reference/test-encyclopedia.mdx index b613577bb8d702..6b14da18edeb23 100644 --- a/docs/reference/test-encyclopedia.mdx +++ b/docs/reference/test-encyclopedia.mdx @@ -738,6 +738,10 @@ behavior and their toolchains will take precedence over the default ones. Test rule authors can define their own test toolchain type and also register a default toolchain for it. +## Integration Testing {#integration-testing} + +Bazel now supports a new `test_feature()` for integration tests. This allows for more robust testing of complex systems. + ## Tag conventions {#tag-conventions} Some tags in the test rules have a special meaning. diff --git a/integration_test.py b/integration_test.py new file mode 100644 index 00000000000000..8da3141ea198b4 --- /dev/null +++ b/integration_test.py @@ -0,0 +1,3 @@ +# Documentation Bot Test +def test_feature(): + pass \ No newline at end of file