Before submitting a pull request, please make sure that:
-
You’ve rebased your changes on top of the current
main
branch -
If you created a new top level directory: You’ve included the new directory in
settings.gradle
-
You’ve run
./gradlew updateInfrastructure
-
You’ve run
./gradlew :<name of the group>:<name of the smoke test>:build
If your smoke test uses Docker Compose here are few tips:
-
Wrap your port values in single quotes (
'8080'
) -
Do not specify hardcoded port mappings in
docker-compose.yml
- use'8080'
rather than'8080':'8080'
-
Configure your sample app to use the dynamic host (
YOUR_SVC_HOST
) and port (YOUR_SVC_PORT
) property (see an example)