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
5 changes: 4 additions & 1 deletion .coveragerc
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,7 @@ branch = True
source = error_align

[report]
omit = src/error_align/baselines/*
# Match both the editable (src/error_align/...) and installed
# (.../site-packages/error_align/...) layouts so baselines are omitted in
# both local and CI runs.
omit = */baselines/*
8 changes: 5 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,11 +60,13 @@ Alignment(INSERT: "period")
## Citation and Research

```
@article{borgholt2025text,
@inproceedings{borgholt2026text,
title={A Text-To-Text Alignment Algorithm for Better Evaluation of Modern Speech Recognition Systems},
author={Borgholt, Lasse and Havtorn, Jakob and Igel, Christian and Maal{\o}e, Lars and Tan, Zheng-Hua},
journal={arXiv preprint arXiv:2509.24478},
year={2025}
booktitle={ICASSP 2026-2026 IEEE International Conference on Acoustics, Speech and Signal Processing (ICASSP)},
pages={3476--3480},
year={2026},
organization={IEEE}
}
```

Expand Down
2 changes: 1 addition & 1 deletion codecov.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
ignore:
- "src/error_align/baselines/*"
- "**/baselines/**"

coverage:
status:
Expand Down
4 changes: 4 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -100,3 +100,7 @@ build-dir = "build/{wheel_tag}"

[tool.scikit-build.sdist]
include = ["cpp/*", "CMakeLists.txt", "error_align/*", "README.md", "pyproject.toml"]

# NOTE: Coverage.py configuration lives in .coveragerc (which takes precedence
# over pyproject.toml). Keep it there as the single source of truth rather than
# splitting/duplicating coverage settings across two files.
2 changes: 1 addition & 1 deletion pytest.ini
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
[pytest]
addopts = --cov=src --cov-report=term --cov-report=xml --typeguard-packages error_align
addopts = --cov=error_align --cov-report=term --cov-report=xml --typeguard-packages error_align
Loading