diff --git a/.github/workflows/github-actions-demo.yml b/.github/workflows/github-actions-demo.yml index 29b7045..fcbf6aa 100644 --- a/.github/workflows/github-actions-demo.yml +++ b/.github/workflows/github-actions-demo.yml @@ -37,7 +37,7 @@ jobs: 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=$(find Test -type f -name '*test_test.py' -print | tr '\n' ' ') + TEST_SCRIPTS=$(find testing -type f -name '*test_test.py' -print | tr '\n' ' ') echo "Found test scripts: $TEST_SCRIPTS" echo "TEST_SCRIPTS=$TEST_SCRIPTS" >> $GITHUB_ENV - name: Run Tests