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
Enabling Local Testing with RIE and Improving Tests Coverability (#560)
* Add local testing support with RIE
* Improve code test coverage from 0.45 to 0.5
* Replace the hardcoded versions with RELEASE versions
* Replace Dockerfile base image with image that has RIE preinstalled
* Change from mvn central artifacts to locally built ones
* Update from java 11 to java 21 and remove duplicate entries from pom
* Clean up test coverage configuration
* Update README to reflect changes
---------
Co-authored-by: AntoniaSzecsi <lszecsi@amazon.com>
Copy file name to clipboardExpand all lines: aws-lambda-java-runtime-interface-client/README.md
+43Lines changed: 43 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -138,6 +138,49 @@ This command invokes the function running in the container image and returns a r
138
138
139
139
*Alternately, you can also include RIE as a part of your base image. See the AWS documentation on how to [Build RIE into your base image](https://docs.aws.amazon.com/lambda/latest/dg/images-test.html#images-test-alternative).*
140
140
141
+
### Automated Local Testing
142
+
143
+
For developers working on this runtime interface client, we provide an automated testing script that handles RIE setup, dependency management, and Docker orchestration.
0 commit comments