Skip to content

Commit

Permalink
[tests] run reference CP flow in CI
Browse files Browse the repository at this point in the history
This adds the reference CP flow to the integration test script to ensure
it is run in CI.

Signed-off-by: Tim Trippel <[email protected]>
  • Loading branch information
timothytrippel committed Oct 15, 2024
1 parent 88e1355 commit 10a46b0
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions run_integration_tests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -45,3 +45,13 @@ for sku in "${SKUS[@]}"; do
--parallel_clients=10 \
--total_calls_per_client=10
done

# Run the reference CP flow.
CP_SKUS=("sival")
for sku in "${CP_SKUS[@]}"; do
echo "Running reference CP flow with sku: ${sku} ..."
bazelisk run //src/ate/test_programs:cp -- \
--pa_socket="localhost:5001" \
--sku="${sku}" \
--sku_auth_pw="test_password"
done

0 comments on commit 10a46b0

Please sign in to comment.