From f725fd88bfceb9637e4a28c3067fdb0c37eaf776 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jannis=20Sch=C3=B6nleber?= Date: Mon, 26 Aug 2024 14:38:29 +0200 Subject: [PATCH] docs: update docs --- README.md | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 9b10bb3..611864e 100644 --- a/README.md +++ b/README.md @@ -2,6 +2,10 @@ This is a simple test of FastAPI background tasks with Pytest. +### Setup + +Using conda. + ```bash conda create python=3.11 --prefix /scratch/janniss/conda/background conda activate /scratch/janniss/conda/background @@ -9,7 +13,8 @@ pip install uv uv pip install -r requirements.txt ``` +### Run tests ```bash -pytest tests -vs -``` \ No newline at end of file +make test +```