Skip to content

Commit

Permalink
set hot reload to false to avoid using the factory of uvicorn (should…
Browse files Browse the repository at this point in the history
… be hardset in tests imo) (#23)

set hot reload to false to avoid using the factory of uvicorn (should be harset in tests imo)
  • Loading branch information
mde-pach authored Mar 4, 2024
1 parent a3f1ef3 commit a4d5891
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/fixtures/blitz.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ def blitz_app_path(cli: Cli) -> Iterator[Path]:
def blitz_app(cli: Cli, blitz_app_path: Path) -> Iterator[None]:
proc = Process(
target=cli.start,
kwargs={"blitz_app_name": blitz_app_path.name},
kwargs={"blitz_app_name": blitz_app_path.name, "hot_reload": False},
)
try:
proc.start()
Expand Down

0 comments on commit a4d5891

Please sign in to comment.