From b825fa1a7c251950d49a45736685c377a2a4e3f8 Mon Sep 17 00:00:00 2001 From: Przemek Denkiewicz Date: Fri, 21 Jan 2022 15:58:38 +0100 Subject: [PATCH] Recreate tox virtual env --- Makefile | 4 ++-- README.md | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) 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