Add make target to cleanup e2e test setup
This commit is contained in:
parent
df9e856dc6
commit
fe962ccb69
4
Makefile
4
Makefile
|
@ -24,8 +24,10 @@ test-cov:
|
||||||
test-tox-all:
|
test-tox-all:
|
||||||
tox
|
tox
|
||||||
|
|
||||||
test-e2e:
|
clean-e2e:
|
||||||
rm -rf tests/profiles/*/.env_$(E2E_PYTHON_EXE)*
|
rm -rf tests/profiles/*/.env_$(E2E_PYTHON_EXE)*
|
||||||
|
|
||||||
|
test-e2e: clean-e2e
|
||||||
cd tests && ./e2e-tests webapp
|
cd tests && ./e2e-tests webapp
|
||||||
cd tests && ./e2e-tests conflicting
|
cd tests && ./e2e-tests conflicting
|
||||||
cd tests && ./e2e-tests cyclic
|
cd tests && ./e2e-tests cyclic
|
||||||
|
|
Loading…
Reference in New Issue