From 4b446d6812dc864b99b12109dc59b8802a8a6f57 Mon Sep 17 00:00:00 2001 From: Wade Barnes Date: Mon, 4 Dec 2023 08:59:15 -0800 Subject: [PATCH] Fix plug-in tests Signed-off-by: Wade Barnes --- .github/workflows/pr-linting-and-unit-tests.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/pr-linting-and-unit-tests.yaml b/.github/workflows/pr-linting-and-unit-tests.yaml index 5aedb1cd1..d1a1eb343 100644 --- a/.github/workflows/pr-linting-and-unit-tests.yaml +++ b/.github/workflows/pr-linting-and-unit-tests.yaml @@ -43,7 +43,7 @@ jobs: id: changed-plugins run: | - # Collects all the plugin names that have changes. + # Collects all the plugin names that have changes. # If there is directory that isn't a plugin then it will need to skip it. Currently skipping plugin_globals declare -a changed_dirs=() for dir in ./*/; do @@ -70,7 +70,7 @@ jobs: run: | for dir in ${{ steps.changed-plugins.outputs.changed-plugins }}; do cd $dir - poetry install --no-interaction --no-root + poetry install --no-interaction --no-root --extras "aca-py" cd .. done #----------------------------------------------