From ba8446b29f8eb899488da478f257e745b03260c4 Mon Sep 17 00:00:00 2001 From: Travis Thompson Date: Thu, 29 Aug 2024 13:24:52 -0400 Subject: [PATCH] Update tests.yml Commented out the debug action because it keeps the threads open and doesn't let you know your tests failed. Also changed the run command to look for a "tests" folder instead of a "test" folder. --- .github/workflows/tests.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 0354917..b5591e5 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -32,9 +32,9 @@ jobs: attempt_limit: 10 attempt_delay: 10000 - name: Run tests on package - run: python3 -m pytest test --cov --cov-branch --cov-report=term-missing - - name: Debug with tmate on failure - if: ${{ failure() }} - uses: mxschmitt/action-tmate@v3 - with: - limit-access-to-actor: true \ No newline at end of file + run: python3 -m pytest tests --cov --cov-branch --cov-report=term-missing + # - name: Debug with tmate on failure + # if: ${{ failure() }} + # uses: mxschmitt/action-tmate@v3 + # with: + # limit-access-to-actor: true \ No newline at end of file