From 5423c04df6d42e5d695d1e39099e3364220f0771 Mon Sep 17 00:00:00 2001 From: Ian Fijolek Date: Fri, 27 Oct 2023 13:46:32 -0700 Subject: [PATCH] Clean venv before trying to run hatch again --- .drone.star | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.drone.star b/.drone.star index 6377e8e..a4d4688 100644 --- a/.drone.star +++ b/.drone.star @@ -56,7 +56,7 @@ def test_step(docker_tag, python_cmd="python"): "image": docker_tag, "commands": [ "{} -V".format(python_cmd), - "make test" + "make clean-all test" ], }