Compare commits

..

8 Commits

Author SHA1 Message Date
Cian-H 2ae8ab6926 Patch: fixed test config typo 2025-05-23 17:15:02 +01:00
Cian-H e24e1f2cbc Patch: code cleanup 2025-05-23 17:13:41 +01:00
Cian-H e3465637f9 Removed unnecessary babel config 2025-05-23 17:10:48 +01:00
Cian-H f7a4ab0939 Removed unnecessary docker version check 2025-05-23 16:26:13 +01:00
Cian-H a7ffce1f43 Fixed coverage badge url 2025-05-23 16:14:43 +01:00
Cian-H 3b1526d4d8 Patch: typo fix in reporting config 2025-05-23 16:10:08 +01:00
Cian-H fd4f97fd41 Another attempt to patch coverage reporting 2025-05-23 16:08:39 +01:00
Cian-H c91ff83bb5 Attempt to patch automatic coveralls reporting 2025-05-23 16:06:49 +01:00
4 changed files with 4 additions and 26 deletions
+2 -4
View File
@@ -74,8 +74,6 @@ jobs:
run: |
uv --version
uv run python --version
docker --version
docker ps
- name: Install dependencies
run: |
@@ -83,7 +81,7 @@ jobs:
- name: Run tests
env:
PYTEST_ADDOPTS: "--cov-report=xml"
PYTEST_ADDOPTS: "--cov-report=lcov"
run: |
uv run test
@@ -91,4 +89,4 @@ jobs:
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
path-to-lcov: coverage.xml
path-to-lcov: coverage.lcov
+1 -1
View File
@@ -25,7 +25,7 @@
:target: https://invenio-config-iform.readthedocs.io/en/latest/?badge=latest
.. image:: https://img.shields.io/coveralls/mb-wali/invenio-config-iform.svg
:target: https://coveralls.io/r/mb-wali/invenio-config-iform
:target: https://coveralls.io/r/Cian-H/invenio-config-iform
.. image:: https://img.shields.io/badge/code%20style-Ruff-D7FF64.svg
:target: https://github.com/astral-sh/ruff
+1 -1
View File
@@ -8,4 +8,4 @@
"""Metadata for this python module."""
__version__ = "2025.5.20.12"
__version__ = "2025.5.20.18"
-20
View File
@@ -133,23 +133,3 @@ line-ending = "auto"
[tool.pydocstyle]
add_ignore = ["D401"]
# Babel configuration
[tool.babel.compile_catalog]
directory = "invenio_config_iform/translations/"
use-fuzzy = true
[tool.babel.extract_messages]
copyright_holder = "I-Form Advanced Research Manufacturing Research Centre"
msgid_bugs_address = "cian.hughes@dcu.ie"
mapping-file = "babel.ini"
output-file = "invenio_config_iform/translations/messages.pot"
add-comments = "NOTE"
[tool.babel.init_catalog]
input-file = "invenio_config_iform/translations/messages.pot"
output-dir = "invenio_config_iform/translations/"
[tool.babel.update_catalog]
input-file = "invenio_config_iform/translations/messages.pot"
output-dir = "invenio_config_iform/translations/"