Skip to content

Commit 6ae0b39

Browse files
authored
docs: Update integration testing guide to include a hint to do a clean build when experiencing issues (#1584)
1 parent 8babd96 commit 6ae0b39

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

docs/development-guide/IntegrationTests.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -69,3 +69,15 @@ cmd /c ./gradlew --no-parallel --no-daemon test-all-environments
6969
```
7070

7171
Test results can be found at `wrapper/build/report/index.html`.
72+
73+
If you encounter unexplained build issues/errors, or after major project structure changes, try running the following to perform a clean build:
74+
75+
macOS:
76+
```bash
77+
./gradlew clean
78+
```
79+
80+
Windows:
81+
```bash
82+
cmd /c ./gradlew clean
83+
```

0 commit comments

Comments
 (0)