Skip to content
Merged
Show file tree
Hide file tree
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
26 changes: 26 additions & 0 deletions .github/workflows/coveralls.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Code Coverage

on:
push:
branches: [main, development]
env:
COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }}

jobs:
code_coverage:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: 3.12
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install coveralls
pip install -r requirements.txt
- name: Run coveralls
run: |
coverage run -m pytest
coveralls
4 changes: 2 additions & 2 deletions .github/workflows/plugin-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
strategy:
matrix:
operating-system: [ubuntu-latest]
versions: [ { jdk: 17, mapping-service: v1.0.5 }, { jdk: 21, mapping-service: latest } ]
versions: [ { jdk: 17, mapping-service: v1.0.5 }, { jdk: 21, mapping-service: v1.1.1 } ]

steps:
- name: Checkout repository
Expand Down Expand Up @@ -53,7 +53,7 @@ jobs:
fail-fast: false
matrix:
operating-system: [ubuntu-latest]
versions: [ { jdk: 17, mapping-service: v1.0.5 }, { jdk: 21, mapping-service: latest } ]
versions: [ { jdk: 17, mapping-service: v1.0.5 }, { jdk: 21, mapping-service: v1.1.1 } ]
needs: build

steps:
Expand Down
Binary file not shown.
Binary file not shown.
Binary file modified tests/parser_tests/__pycache__/__init__.cpython-312.pyc
Binary file not shown.
Binary file not shown.
Binary file not shown.
Loading