From b57eee2c6a1f856634335337f3370386632a30bd Mon Sep 17 00:00:00 2001 From: doku88 Date: Tue, 5 Nov 2024 01:31:27 -0800 Subject: [PATCH] small change --- .github/workflows/github-actions-demo.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/github-actions-demo.yml b/.github/workflows/github-actions-demo.yml index bc27df9..f24f9d5 100644 --- a/.github/workflows/github-actions-demo.yml +++ b/.github/workflows/github-actions-demo.yml @@ -36,8 +36,8 @@ jobs: id: find_tests run: | # Find all files in the 'Test' directory and join them into a space-separated string - #TEST_SCRIPTS=$(find Test -type f ! -name '__init__.py' -print | tr '\n' ' ') - TEST_SCRIPTS=("testing/pytest_test.py", "testing/upload_sync_test.py") + TEST_SCRIPTS=$(find Test -type f ! -name '__init__.py' -print | tr '\n' ' ') + #TEST_SCRIPTS=("testing/pytest_test.py", "testing/upload_sync_test.py") echo "Found test scripts: $TEST_SCRIPTS" echo "TEST_SCRIPTS=$TEST_SCRIPTS" >> $GITHUB_ENV - name: Run Tests