Limit translations_develop to an integration (#31804)

* limit translations_develop to english

* Convert to Python

* Limit to integration

* Add to hassfest

* Remove old bash comment
This commit is contained in:
Paulus Schoutsen 2020-02-14 09:26:50 -08:00 committed by GitHub
parent e6148d223a
commit 71a81c443f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 79 additions and 13 deletions

View file

@ -82,6 +82,12 @@ def main():
subprocess.run(["python", "-m", "script.gen_requirements_all"], **pipe_null)
print()
print("Running script/translations_develop to pick up new translation strings.")
subprocess.run(
["script/translations_develop", "--integration", info.domain], **pipe_null
)
print()
if args.develop:
print("Running tests")
print(f"$ pytest -vvv tests/components/{info.domain}")