From a5120235553bca048d0f04dc76cc45fd4030738c Mon Sep 17 00:00:00 2001 From: Miguel Ballesteros Date: Thu, 7 Nov 2024 17:46:54 -0500 Subject: [PATCH] Removed test run output redirect to github_step_summary --- .github/workflows/dev_test_publish.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/dev_test_publish.yml b/.github/workflows/dev_test_publish.yml index ef6d6b3..1990001 100644 --- a/.github/workflows/dev_test_publish.yml +++ b/.github/workflows/dev_test_publish.yml @@ -37,18 +37,18 @@ jobs: - name: Install latest PIP run: | - python -m pip install --upgrade pip >> $GITHUB_STEP_SUMMARY + python -m pip install --upgrade pip - name: Install Dependencies run: | - python -m pip install pytest pytest-cov >> $GITHUB_STEP_SUMMARY + python -m pip install pytest pytest-cov - name: Setup factiva-analytics (this repo) run: | - python -m pip install -e . >> $GITHUB_STEP_SUMMARY + python -m pip install . - name: pytest - run: pytest test/ >> $GITHUB_STEP_SUMMARY + run: pytest test/ build: name: Build and publish