From a06adaa1c3856931750849725e4f594bdf7fa7ea Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pablo=20Iranzo=20G=C3=B3mez?= Date: Mon, 13 Jun 2022 10:46:04 +0200 Subject: [PATCH] feat(entrypoint): Install python requirements for testing too as Risu GHA is usually part of testing --- entrypoint.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/entrypoint.sh b/entrypoint.sh index b346e01..4beb65f 100755 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -11,6 +11,7 @@ mkdir -p /github/workspace/ /github/home/.cache/pip chmod -R u+rwX,go+rwX,go+rwX /github/workspace/ /github/home/.cache/pip [ -f requirements.txt ] && pip install -r requirements.txt +[ -f test-requirements.txt ] && pip install -r test-requirements.txt MYBUILD=${RUNFILE:="build.sh"}