Skip to content

Commit

Permalink
setup.cfg: fix translation paths
Browse files Browse the repository at this point in the history
  • Loading branch information
kpsherva committed Jul 17, 2024
1 parent 97b2a3f commit 64f8ce6
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -91,22 +91,22 @@ all_files = 1
universal = 1

[compile_catalog]
directory = cds_migrator_kit/translations/
directory = cds_dojson/translations/

[extract_messages]
copyright_holder = CERN
msgid_bugs_address = [email protected]
mapping-file = babel.ini
output-file = cds_migrator_kit/translations/messages.pot
output-file = cds_dojson/translations/messages.pot
add-comments = NOTE

[init_catalog]
input-file = cds_migrator_kit/translations/messages.pot
output-dir = cds_migrator_kit/translations/
input-file = cds_dojson/translations/messages.pot
output-dir = cds_dojson/translations/

[update_catalog]
input-file = cds_migrator_kit/translations/messages.pot
output-dir = cds_migrator_kit/translations/
input-file = cds_dojson/translations/messages.pot
output-dir = cds_dojson/translations/

[pydocstyle]
add_ignore = D401,D403
Expand All @@ -119,8 +119,8 @@ ignore =
*-requirements.txt

[tool:pytest]
addopts = --black --isort --pydocstyle --doctest-glob="*.rst" --doctest-modules --cov=cds_migrator_kit --cov-report=term-missing
testpaths = tests cds_migrator_kit
addopts = --black --isort --pydocstyle --doctest-glob="*.rst" --doctest-modules --cov=cds_dojson --cov-report=term-missing
testpaths = tests cds_dojson
live_server_scope = module

[pycodestyle]
Expand Down

0 comments on commit 64f8ce6

Please sign in to comment.