Skip to content

Commit a044b50

Browse files
committed
Unify tasks and complete infra testing
1 parent 602210c commit a044b50

24 files changed

+362
-3440
lines changed

.github/workflows/test-changed-infrastructure.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ jobs:
8383
8484
- name: "🧪 Run '${{ matrix.coordinates }}' tests"
8585
run: |
86-
./gradlew test -Pcoordinates=${{ matrix.coordinates }}
86+
./gradlew testInfra -Pcoordinates=${{ matrix.coordinates }}
8787
8888
all-infrastructure-passed:
8989
name: "🧪 All build-logic triggered tests have passed"

AGENTS.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,15 +11,15 @@
1111
- Windows: gradlew.bat <task> [options]
1212
- Tip: add --stacktrace for debugging
1313

14-
## One command for complete testing (use at the end of the task to verify)
15-
./gradlew testAllParallel -Pparallelism=4
14+
## One command for complete testing (locally use testAllInfra)
15+
./gradlew testAllInfra -Pparallelism=4 --stacktrace
1616

1717
## Code Style
1818
- Always try to reuse existing code.
1919
- Be assertive in code.
2020
- Write type annotations in all functions and most variables.
2121
- Document code without being too verbose.
22-
- In java, always import classes and use them without qualified names.
22+
- In JVM languages, always import classes and use them without qualified names.
2323

2424
## Testing individual components
2525

build.gradle

Lines changed: 277 additions & 99 deletions
Large diffs are not rendered by default.

docs/DEVELOPING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ Tip: When debugging locally, add `--stacktrace` for better error output.
2323

2424
### End-to-end testing before the commit
2525
```console
26-
./gradlew testAllParallel --stacktrace
26+
./gradlew testAllInfra --stacktrace
2727
```
2828

2929
### Style and formatting

0 commit comments

Comments
 (0)