Skip to content

Commit

Permalink
Patching tests to pass (C# timing, Python uvicorn) (#933)
Browse files Browse the repository at this point in the history
Signed-off-by: Paul Yuknewicz <[email protected]>
  • Loading branch information
paulyuk authored Sep 22, 2023
1 parent dcd97ee commit 7ee9b29
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
1 change: 1 addition & 0 deletions .github/workflows/validate_python_quicstarts.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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")
Expand Down
4 changes: 2 additions & 2 deletions pub_sub/csharp/http/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions pub_sub/csharp/sdk/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 7ee9b29

Please sign in to comment.