From f0831e6deb50814b3fc704d582baec65242020ae Mon Sep 17 00:00:00 2001 From: James Min Date: Tue, 21 Oct 2025 06:43:29 +0900 Subject: [PATCH] docs: add quick pytest example for contributors --- README.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/README.md b/README.md index 4fd87298e..435fc49db 100644 --- a/README.md +++ b/README.md @@ -498,6 +498,16 @@ Additional optional FastAPI dependencies: * orjson - Required if you want to use `ORJSONResponse`. * ujson - Required if you want to use `UJSONResponse`. +## Quick Test for Contributors + +After installing the dependencies, you can verify that FastAPI is working correctly +by running a subset of the test suite: + +```bash +pytest -q fastapi/tests/test_tutorial + +``` + ## License This project is licensed under the terms of the MIT license.