diff --git a/package-testing/sdk-test-runner/README.md b/package-testing/sdk-test-runner/README.md index b1706593..122c06c2 100644 --- a/package-testing/sdk-test-runner/README.md +++ b/package-testing/sdk-test-runner/README.md @@ -19,7 +19,7 @@ docker run \ --rm -d \ -v ./test-data:/app/test-data \ -p 5000:5000 \ - -t Eppo-exp/test-api-server:local + -t Eppo-exp/testing-api:local ..//build-and-run.sh @@ -37,7 +37,7 @@ docker run \ --rm -d \ -v ./test-data:/app/test-data \ -p 5000:5000 \ - -t Eppo-exp/test-api-server:local + -t Eppo-exp/testing-api:local ..//build-and-run.sh diff --git a/package-testing/sdk-test-runner/test-sdk.sh b/package-testing/sdk-test-runner/test-sdk.sh index ad4f43d2..aeb4d81b 100755 --- a/package-testing/sdk-test-runner/test-sdk.sh +++ b/package-testing/sdk-test-runner/test-sdk.sh @@ -107,7 +107,7 @@ case "$command" in server) echo "... Running test scenarios against $SDK_NAME@$SDK_REF in server mode" - echo " ... Starting Test Cluster node [Eppo-exp/test-api-server]" + echo " ... Starting Test Cluster node [Eppo-exp/testing-api]" docker run \ -e EPPO_API_HOST \ @@ -118,7 +118,7 @@ case "$command" in -v ./test-data:/app/test-data:ro \ --rm -d \ --name eppo-api \ - -t Eppo-exp/test-api-server:latest + -t Eppo-exp/testing-api:latest echo_yellow " ... Waiting to verify server is up" diff --git a/package-testing/testing-api/README.md b/package-testing/testing-api/README.md index 26ca1f96..21328ad2 100644 --- a/package-testing/testing-api/README.md +++ b/package-testing/testing-api/README.md @@ -91,7 +91,7 @@ To run in docker, we need to build the docker image, provide the test data, then 1. Build for local use ```shell - docker build . -t Eppo-exp/test-api-server:local + docker build . -t Eppo-exp/testing-api:local ``` To use the local copy of test data, run @@ -113,7 +113,7 @@ docker run \ --rm \ -v ./test-data:/app/test-data \ -p 5000:5000 \ - -t Eppo-exp/test-api-server:local + -t Eppo-exp/testing-api:local ``` diff --git a/package-testing/testing-api/release.sh b/package-testing/testing-api/release.sh index e143e0e1..01622c1d 100755 --- a/package-testing/testing-api/release.sh +++ b/package-testing/testing-api/release.sh @@ -3,7 +3,5 @@ VERSION=$1 -docker build . -t Eppo-exp/test-api-server:$VERSION -docker tag Eppo-exp/test-api-server:$VERSION Eppo-exp/test-api-server:latest - -# TODO push to github artifact registry. +docker build . -t Eppo-exp/testing-api:$VERSION +docker tag Eppo-exp/testing-api:$VERSION Eppo-exp/testing-api:latest