Skip to content

Commit

Permalink
fix: small fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
jnsbck committed Dec 3, 2024
1 parent 6236ab0 commit d7c4396
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -98,9 +98,8 @@ jobs:
fi
echo "✅ All checks passed"
# Regular Tests Job
pytest:
name: Tests
name: Pytest
runs-on: ubuntu-20.04

steps:
Expand All @@ -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
Expand Down

0 comments on commit d7c4396

Please sign in to comment.