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