We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a8e7132 commit 082184eCopy full SHA for 082184e
1 file changed
AGENTS.md
@@ -21,13 +21,21 @@ The SDK should be written in Java using Java 8.
21
To format code run:
22
23
```bash
24
-./gradlew spotlessApply
+./gradlew --offline spotlessApply
25
```
26
27
To test the SDK run:
28
29
30
-./gradlew --offline temporal-sdk:test
+./gradlew :temporal-sdk:test --offline --tests "io.temporal.workflow.*"
31
32
33
-running all tests can take a long time
+running all tests can take a long time
34
+
35
+To test a new test you added run
36
37
+```bash
38
+./gradlew :temporal-sdk:test --offline --tests "$TEST"
39
+```
40
41
+where $TEST is the name of the test including the package.
0 commit comments