From 846154efe1ceb313619d721582ea2d7b716091ee Mon Sep 17 00:00:00 2001 From: Kitaiti Makoto Date: Sun, 15 May 2022 06:32:49 +0900 Subject: [PATCH] Activate venv on integration test --- script/run_browser_test.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/script/run_browser_test.sh b/script/run_browser_test.sh index 96294500..faa4b25e 100755 --- a/script/run_browser_test.sh +++ b/script/run_browser_test.sh @@ -14,6 +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 cd $(dirname $0)/browser_test/ python3 -m unittest *.py