From d7c43968fcfb546e4412e514218b842378401b14 Mon Sep 17 00:00:00 2001 From: jnsbck-uni Date: Tue, 3 Dec 2024 19:29:25 +0100 Subject: [PATCH] fix: small fixes --- .github/workflows/tests.yml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index d77c0ede..38289cc4 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -98,9 +98,8 @@ jobs: fi echo "✅ All checks passed" - # Regular Tests Job pytest: - name: Tests + name: Pytest runs-on: ubuntu-20.04 steps: @@ -123,11 +122,10 @@ jobs: pip install pytest pytest-cov pytest tests/ -m "not regression" --cov=jaxley --cov-report=xml - # Regression Tests Job regression_tests: name: Regression Tests runs-on: ubuntu-20.04 - needs: pytest # This ensures that regression tests only run if the pytest job is successful + needs: pytest # ensure regression tests are only run if tests pass steps: - uses: actions/checkout@v3