Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 3 additions & 7 deletions .github/workflows/python-app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.12.3"] # Match local Python version
python-version: ["3.12.3"] # Match local Python version

steps:
- name: Check out repository
Expand Down Expand Up @@ -67,11 +67,7 @@ jobs:
CHANGED_FILES=$(git diff --name-only origin/main | grep '\.py$' || echo "")
if [ -n "$CHANGED_FILES" ]; then pylint $CHANGED_FILES --exit-zero; else echo "No Python files changed"; fi

- name: Run Tests with Coverage (Sequential Debugging)
- name: Run Tests with Coverage (Parallel Execution)
run: |
pytest --cov --cov-report=term-missing --cov-fail-under=90 || true
pytest --cov --cov-report=term-missing --cov-fail-under=90 -n auto
echo "✅ Pytest completed"

- name: Run Plugin Tests Separately
run: |
pytest tests/test_plugins_init.py --cov --cov-report=term-missing --cov-fail-under=90 || true
Loading