Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add (Async)StreamedResponse for multi-part responses #383

Merged
merged 19 commits into from
Nov 30, 2024
Merged
Changes from 1 commit
Commits
Show all changes
19 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Add make test-vcr-once
jackmpcollins committed Nov 30, 2024
commit f13a08089b530d91685aa5c90d775a853a961aad
4 changes: 4 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -43,6 +43,10 @@ testcov: test # Run tests and generate a coverage report
@echo "building coverage html"
uv run coverage html --show-contexts

.PHONY: test-vcr-once
test-vcr-once: # Run the tests and record new VCR cassettes
uv run pytest -vv --record-mode=once

.PHONY: test-fix-vcr
test-fix-vcr: # Run the last failed tests and rewrite the VCR cassettes
uv run pytest -vv --last-failed --last-failed-no-failures=none --record-mode=rewrite