From dd9bc200681ba7068de3a1a334d8148ff8e5f181 Mon Sep 17 00:00:00 2001 From: Daniel Date: Thu, 7 Dec 2023 12:59:19 +0100 Subject: [PATCH] update readme --- README.md | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index d3d3604..3418450 100644 --- a/README.md +++ b/README.md @@ -26,7 +26,7 @@ You can run pytest-abra with and without Docker. Choose now and follow the steps Create a python environment and install all dependencies via ```bash -pip install -r requirements.txt +pip install -e . playwright install ``` @@ -40,7 +40,8 @@ python main.py ```bash docker compose build # build the image -docker compose run --rm app ./run_pytest-abra.sh # run pytest-abra +docker compose run --rm app python main.py # run pytest-abra +docker compose run --rm -it app /bin/bash # debug the container ``` Force rebuild with cache @@ -49,7 +50,7 @@ Force rebuild with cache docker-compose up --build ``` -Force rebuild wtihtout cache +Force rebuild without cache ```bash docker-compose build --no-cache @@ -68,5 +69,5 @@ playwright codegen demo.playwright.dev/todomvc ```bash pytest # test pytest-abra pytest --collect-only # debug test pytest-abra -docker compose run --rm app ./test_pytest-abra.sh # test pytest-abra +docker compose run --rm app pytest # run pytest-abra ```