diff --git a/Makefile b/Makefile index bae4f48e..7fe5f03e 100644 --- a/Makefile +++ b/Makefile @@ -3,7 +3,7 @@ dbt-trino-tests: ./docker/dbt/build.sh ./docker/init_trino.bash pip install -r dev_requirements.txt - tox || ./docker/remove_trino.bash + tox -r || ./docker/remove_trino.bash ./docker/remove_trino.bash dbt-starburst-tests: @@ -11,5 +11,5 @@ dbt-starburst-tests: ./docker/dbt/build.sh ./docker/init_starburst.bash pip install -r dev_requirements.txt - tox || ./docker/remove_starburst.bash + tox -r || ./docker/remove_starburst.bash ./docker/remove_starburst.bash diff --git a/README.md b/README.md index 39fae58f..b70df4ac 100644 --- a/README.md +++ b/README.md @@ -265,7 +265,7 @@ pip install -r dev_requirements.txt Run from the base directory of the project the command: ```sh -tox +tox -r ``` or