From 145253ccbf221b3e4ae7aaf6c891151180307115 Mon Sep 17 00:00:00 2001 From: Kitaiti Makoto Date: Sun, 15 May 2022 11:41:50 +0900 Subject: [PATCH] Fix .venv path in buildenv --- script/run_browser_test.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/script/run_browser_test.sh b/script/run_browser_test.sh index faa4b25e..60dfb6ab 100755 --- a/script/run_browser_test.sh +++ b/script/run_browser_test.sh @@ -14,7 +14,7 @@ caddy run -config /Caddyfile & until curl http://localhost:7878/test/health -f; do sleep 1; done 2>/dev/null >/dev/null -source .venv/bin/activate +source ../.venv/bin/activate cd $(dirname $0)/browser_test/ python3 -m unittest *.py