From aef6872b488b2a06aac6ff07addba704b835b5ca Mon Sep 17 00:00:00 2001 From: appel_c Date: Tue, 23 Sep 2025 23:02:21 -0500 Subject: [PATCH] fix: pytest --- action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/action.yml b/action.yml index 0b5d19c..07e8e9c 100644 --- a/action.yml +++ b/action.yml @@ -151,7 +151,7 @@ runs: run: | source $GITHUB_ENV cd "./_plugin_checkout_/${PLUGIN_REPO_NAME}" - pytest --random-order --cov=./_plugin_checkout_/"${PLUGIN_REPO_NAME}" --cov-config=./_plugin_checkout_/"${PLUGIN_REPO_NAME}"/pyproject.toml --cov-branch --cov-report=xml --no-cov-on-fail ./_plugin_checkout_/"${PLUGIN_REPO_NAME}"/tests/ || test $? -eq 5 + pytest --random-order --cov=. --cov-config=./pyproject.toml --cov-branch --cov-report=xml --no-cov-on-fail ./tests/ || test $? -eq 5 # - name: Checkout BEC Core