summaryrefslogtreecommitdiff
path: root/tox.ini
diff options
context:
space:
mode:
authorSven Anderson <sven@redhat.com>2016-05-20 16:23:55 +0200
committerSven Anderson <sven@redhat.com>2016-05-20 18:26:07 +0200
commit1d8a6a96329b87300dcf711912ab3b1c9f428cf3 (patch)
tree739aefe3c93e766c2bc790ad9e3b4c913a6f2725 /tox.ini
parentc9d036ff94c8d0aa2db2270322529c2bdd8c8f9c (diff)
downloadheat-1d8a6a96329b87300dcf711912ab3b1c9f428cf3.tar.gz
Let setup.py compile_catalog process all language files
Two years ago the translation files have been split into several files, separating the log messages of different log levels from each other, like X.pot, X-log-warning.pot, X-log-info.pot, and so on. However, the setup.py command `compile_catalogs`, that comes from the babel package and compiles the corresponding .po files into .mo files, only supported one file per python package. This means that during packaging `compile_catalogs` never compiled the X-log-*.po files, so the corresponding translations were always missing. Since babel 2.3 the domain can be set to a space separated list of domains. This change adds the the additional log level files to the domain list. The obsolete check that .po and .pot files are valid is removed from tox.ini. Change-Id: I4d05c98b8ddd1a8416d7e0bc0298e86a0adc77d8 Closes-Bug: #1536226
Diffstat (limited to 'tox.ini')
-rw-r--r--tox.ini2
1 files changed, 0 insertions, 2 deletions
diff --git a/tox.ini b/tox.ini
index 4e01b56e3..505fb5537 100644
--- a/tox.ini
+++ b/tox.ini
@@ -37,8 +37,6 @@ commands =
[testenv:pep8]
commands =
flake8 heat bin/heat-api bin/heat-api-cfn bin/heat-api-cloudwatch bin/heat-engine bin/heat-manage contrib heat_integrationtests doc/source
- # Check that .po and .pot files are valid:
- bash -c "find heat -type f -regex '.*\.pot?' -print0|xargs -0 -n 1 msgfmt --check-format -o /dev/null"
python tools/custom_guidelines.py --exclude heat/engine/resources/aws
[testenv:venv]