From 3c92080ce4b7dfc38f6e26614f2758bf1ee499d8 Mon Sep 17 00:00:00 2001 From: "Daniel Doubrovkine (dB.)" Date: Thu, 3 Jun 2021 15:12:30 -0400 Subject: [PATCH] Document running individual tests. (#741) Signed-off-by: dblock --- TESTING.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/TESTING.md b/TESTING.md index 95056b1085b..1fd4d5fc9ce 100644 --- a/TESTING.md +++ b/TESTING.md @@ -206,6 +206,10 @@ Note that this will also run the unit tests and precommit tasks first. If you wa ./gradlew internalClusterTest +To run a specific set of tests. + + ./gradlew :server:internalClusterTest --tests "org.opensearch.common.settings.FallbackSettingsIT.*" + If you want to just run the precommit checks: ./gradlew precommit