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
15 changes: 12 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ jobs:
if: "${{ success() }}"
with:
github-token: "${{ secrets.GITHUB_TOKEN }}"
flag-name: "python-${{ matrix.python }}"
flag-name: "python-${{ matrix.python-version }}"
parallel: true
format: cobertura
files: coverage.xml
Expand All @@ -71,11 +71,20 @@ jobs:
uses: actions/checkout@v5
- name: Install package
run: |
pip install --upgrade pip setuptools
pip install --upgrade pip setuptools coverage
pip install .
- name: Run tests (unittest)
run: |
python -m unittest discover -v || true
make coverage
- name: Coveralls upload
uses: coverallsapp/github-action@v2
if: "${{ success() }}"
with:
github-token: "${{ secrets.GITHUB_TOKEN }}"
flag-name: "python-2.7"
parallel: true
format: cobertura
files: coverage.xml
- name: Legacy note
run: echo "Python 2.7 run completed (non-blocking)."

Expand Down