From fe962ccb69466a9f3823f43189e60f5cdc354afa Mon Sep 17 00:00:00 2001 From: Vineet Naik Date: Sun, 20 Sep 2020 09:46:35 +0530 Subject: [PATCH] Add make target to cleanup e2e test setup --- Makefile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index b624d76..2de3f5f 100644 --- a/Makefile +++ b/Makefile @@ -24,8 +24,10 @@ test-cov: test-tox-all: tox -test-e2e: +clean-e2e: rm -rf tests/profiles/*/.env_$(E2E_PYTHON_EXE)* + +test-e2e: clean-e2e cd tests && ./e2e-tests webapp cd tests && ./e2e-tests conflicting cd tests && ./e2e-tests cyclic