Skip to content

Commit

Permalink
show missing translations
Browse files Browse the repository at this point in the history
  • Loading branch information
eibex committed Apr 6, 2023
1 parent 173be2f commit da0f32c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,4 +29,4 @@ jobs:
flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics
- name: Test with pytest
run: |
pytest -rxXs
pytest -rs
2 changes: 1 addition & 1 deletion tests/test_i18n.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ def test_validate_json(self, language_pack):

def test_all_strings(self, language_pack):
if set(get_language_pack(language_pack).keys()) != set(LANGUAGE_STRUCTURE.keys()):
pytest.skip(str(set(get_language_pack(language_pack).keys()) - set(LANGUAGE_STRUCTURE.keys())))
pytest.skip(f"{language_pack}: {set(LANGUAGE_STRUCTURE.keys() - set(get_language_pack(language_pack).keys()))}")


class TestLanguageString:
Expand Down

0 comments on commit da0f32c

Please sign in to comment.