diff --git a/.github/workflows/github-actions-demo.yml b/.github/workflows/github-actions-demo.yml index ccb0dc5..9da7a9b 100644 --- a/.github/workflows/github-actions-demo.yml +++ b/.github/workflows/github-actions-demo.yml @@ -52,8 +52,8 @@ jobs: id: find_tests run: | # Find all files in the 'testing' directory and join them into a space-separated string - #TEST_SCRIPTS=$(find testing -type f ! -name '__init__.py' -print | tr '\n' ' ') - TEST_SCRIPTS=("testing/pytest_test.py") + TEST_SCRIPTS=$(find testing -type f ! -name '__init__.py' -print | tr '\n' ' ') + #TEST_SCRIPTS=("testing/pytest_test.py") echo "Found test scripts: $TEST_SCRIPTS" echo "TEST_SCRIPTS=$TEST_SCRIPTS" >> $GITHUB_ENV - name: Run Tests