From f55c95406cfdbcfdf7b32931e0796890f1616517 Mon Sep 17 00:00:00 2001 From: Ricardo Alfaro Viquez Date: Wed, 26 Jun 2024 13:51:11 -0600 Subject: [PATCH] trying to fix ci runtest flow --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 1d0594f..5bfb31f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -104,8 +104,8 @@ jobs: python -m pip install pytest - name: Run tests run: | - args=${{ steps.tests_to_run.outputs.pytestArgs }} - pythonpath=${{ steps.tests_to_run.outputs.pytestPaths }} + args="${{ steps.tests_to_run.outputs.pytestArgs }}" + pythonpath="${{ steps.tests_to_run.outputs.pytestPaths }}" if [ -z "${args}" ] || [ -z "${pythonpath}" ]; then echo “Nothing to test” else