diff --git a/README.md b/README.md index 54547be..cd41a3a 100644 --- a/README.md +++ b/README.md @@ -41,8 +41,8 @@ pytest # test abratest ```bash docker compose build # build the image -docker compose run --rm app python ./main.py # run AbraTest -docker compose run --rm app pytest # test AbraTest +docker compose run --rm app ./run_abratest.sh # run AbraTest +docker compose run --rm app ./test_abratest.sh # test AbraTest ``` Force rebuild with cache diff --git a/run.sh b/run_abratest.sh similarity index 100% rename from run.sh rename to run_abratest.sh diff --git a/test_abratest.sh b/test_abratest.sh new file mode 100644 index 0000000..24cef82 --- /dev/null +++ b/test_abratest.sh @@ -0,0 +1,7 @@ +#!/bin/bash + +PWD_PATH=$PWD +RECIPES_PATH=$PWD/recipes +export PYTHONPATH=${PYTHONPATH}:$PWD_PATH:$RECIPES_PATH + +pytest \ No newline at end of file