From c1fe65e904bb41f1e57024d43e15053ce63b1087 Mon Sep 17 00:00:00 2001 From: "Shawn T. Amundson" Date: Wed, 11 Oct 2023 12:24:42 -0500 Subject: [PATCH] Set PYTHONPATH=. during "just test" This is required in order to find the sawtooth_validator python package while running the tests. Signed-off-by: Shawn T. Amundson --- justfile | 1 + 1 file changed, 1 insertion(+) diff --git a/justfile b/justfile index 1e743f2bdc..0b2911f768 100644 --- a/justfile +++ b/justfile @@ -107,6 +107,7 @@ test: echo "\033[1m$cmd\033[0m" $cmd cmd="cd $crate && cargo test $feature" + export PYTHONPATH=. echo "\033[1m$cmd\033[0m" (eval $cmd) done