Fixes tox pep8 error in macOS
Let's remove xargs GNU Extended option -r, --no-run-if-empty in tox.ini. Change-Id: Ia014da76d51fa538513702560cd86da2bb1ae958
This commit is contained in:
parent
36dc717d65
commit
e05d6d58a9
10
tools/check-po.sh
Executable file
10
tools/check-po.sh
Executable file
@ -0,0 +1,10 @@
|
||||
#!/bin/bash
|
||||
|
||||
set -e
|
||||
|
||||
FIND_DIRS=${*:-"."}
|
||||
|
||||
find $FIND_DIRS -type f \( -name '*.po' -o -name '*.pot' \) -print0 | \
|
||||
while read -r -d '' FILE; do
|
||||
msgfmt --check-format -o /dev/null "$FILE"
|
||||
done
|
2
tox.ini
2
tox.ini
@ -34,7 +34,7 @@ whitelist_externals =
|
||||
[testenv:pep8]
|
||||
commands =
|
||||
flake8
|
||||
bash -c "find {toxinidir} -type f \( -name '*.po' -o -name '*.pot' \) -print0 | xargs -0 -n1 --no-run-if-empty msgfmt --check-format -o /dev/null"
|
||||
bash {toxinidir}/tools/check-po.sh {toxinidir}/doc {toxinidir}/glossary
|
||||
python {toxinidir}/tools/check_yaml_file.py {toxinidir}/tools/zanata/translation_team.yaml
|
||||
bash {toxinidir}/tools/check-zanata-users-list.sh
|
||||
whitelist_externals = bash
|
||||
|
Loading…
Reference in New Issue
Block a user