You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- Use `./mvnw compile` to quickly compile the project.
4
+
- If project dependencies didn't change run all Maven commands with --offline flag to avoid internet usage
5
+
- Use `mvn compile --offline` to quickly compile the project.
5
6
6
7
## Testing Instructions
7
-
- Use `./mvnw verify -Dtestcontainers.enabled=false` command to execute all tests.
8
+
- Use `mvn verify -Dtestcontainers.enabled=false --offline` command to execute all tests.
8
9
- The commit should pass all tests before you merge.
9
-
- To verify changes in a single class, execute tests for this class with `./mvnw -Dtest="TestClassName" test -Dtestcontainers.enabled=false` command.
10
+
- To verify changes in a single class, execute tests for this class with `mvn -Dtest="TestClassName" test -Dtestcontainers.enabled=false --offline` command.
10
11
- Fix any test errors until the whole suite is green.
0 commit comments