From ed119c7c06be9aae1aed69018ca956245baae4a3 Mon Sep 17 00:00:00 2001 From: doku88 Date: Tue, 5 Nov 2024 17:32:54 -0800 Subject: [PATCH] added back in upload test to cicd --- .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 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