diff --git a/.github/workflows/validate_python_quicstarts.yaml b/.github/workflows/validate_python_quicstarts.yaml index 58c021aa3..447d4f0cc 100644 --- a/.github/workflows/validate_python_quicstarts.yaml +++ b/.github/workflows/validate_python_quicstarts.yaml @@ -99,6 +99,7 @@ jobs: echo "PATH=$PATH:$HOME/.local/bin" >> $GITHUB_ENV pip3 install setuptools wheel pip3 install mechanical-markdown + pip3 install fastapi uvicorn - name: Validate building blocks with Python run: | variants=("http" "sdk") diff --git a/pub_sub/csharp/http/README.md b/pub_sub/csharp/http/README.md index be4ae6b9e..155084255 100644 --- a/pub_sub/csharp/http/README.md +++ b/pub_sub/csharp/http/README.md @@ -25,8 +25,8 @@ name: Run multi app run template expected_stdout_lines: - 'Started Dapr with app id "order-processor-http"' - 'Started Dapr with app id "checkout-http"' - - '== APP - checkout-http == Published data: Order { OrderId = 10 }' - - '== APP - order-processor-http == Subscriber received : 10' + - '== APP - checkout-http == Published data: Order { OrderId = 2 }' + - '== APP - order-processor-http == Subscriber received : 2' expected_stderr_lines: output_match_mode: substring match_order: none diff --git a/pub_sub/csharp/sdk/README.md b/pub_sub/csharp/sdk/README.md index bee526beb..199b72af3 100644 --- a/pub_sub/csharp/sdk/README.md +++ b/pub_sub/csharp/sdk/README.md @@ -25,8 +25,8 @@ name: Run multi app run template expected_stdout_lines: - 'Started Dapr with app id "order-processor"' - 'Started Dapr with app id "checkout-sdk"' - - 'Published data: Order { OrderId = 10 }' - - 'Subscriber received : Order { OrderId = 10 }' + - 'Published data: Order { OrderId = 2 }' + - 'Subscriber received : Order { OrderId = 2 }' expected_stderr_lines: output_match_mode: substring match_order: none