From 18064d114a44e51647d094472747cd672de241e3 Mon Sep 17 00:00:00 2001 From: Li Haoyi Date: Wed, 25 Dec 2024 14:42:49 +0900 Subject: [PATCH] Update 3-selective-testing.adoc --- blog/modules/ROOT/pages/3-selective-testing.adoc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/blog/modules/ROOT/pages/3-selective-testing.adoc b/blog/modules/ROOT/pages/3-selective-testing.adoc index 4294b3549eb..744820266b2 100644 --- a/blog/modules/ROOT/pages/3-selective-testing.adoc +++ b/blog/modules/ROOT/pages/3-selective-testing.adoc @@ -1,6 +1,6 @@ // tag::header[] -# Understanding Selective Testing +# Faster CI with Selective Testing :author: Li Haoyi @@ -13,7 +13,7 @@ Selective testing is a key technique necessary for working with any large codeba or monorepo: picking which tests to run to validate a change or pull-request, because running every test every time is costly and slow. This blog post will explore what selective testing is all about, the different approaches you can take with selective -testing, based on my experience working on developer tooling for the last decade at +testing, based on my experience working on developer tooling and CI for the last decade at Dropbox and Databricks. Lastly, we will discuss how selective testing is supported by the Mill build tool.