Skip to content

Commit

Permalink
Disable legacy accents check.
Browse files Browse the repository at this point in the history
This is one of the checks that we probably should run on the sources instead of binaries.

com.google.fonts/check/legacy_accents
On the Universal profile.

(fonttools#3959 (comment))
  • Loading branch information
felipesanches committed Mar 1, 2024
1 parent dd3fe5d commit 6b6bf2f
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 2 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,9 @@ A more detailed list of changes is available in the corresponding milestones for
- v0.12.0a2 (2024-Feb-21)

### Changes to existing checks
#### On the Universal profile
- **DISABLED - [com.google.fonts/check/legacy_accents]:** This is one of the checks that we probably should run on the sources instead of binaries. (https://github.com/fonttools/fontbakery/issues/3959#issuecomment-1822913547)

#### On the Open Type Profile
- **[com.google.fonts/check/layout_valid_feature_tags]:** Updated the check to allow valid private-use feature tags. (issue #4544)
- **[com.google.fonts/check/varfont/family_axis_ranges]:** Updated the check to skip fonts without fvar tables. (issue #4554)
Expand Down
1 change: 1 addition & 0 deletions Lib/fontbakery/checks/universal/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -741,6 +741,7 @@ def com_google_fonts_check_whitespace_ink(ttFont):
yield PASS, "There is no whitespace glyph with ink."


@disable # https://github.com/fonttools/fontbakery/issues/3959#issuecomment-1822913547
@check(
id="com.google.fonts/check/legacy_accents",
proposal=[
Expand Down
2 changes: 1 addition & 1 deletion Lib/fontbakery/profiles/universal.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
"com.google.fonts/check/whitespace_glyphs",
"com.google.fonts/check/whitespace_glyphnames",
"com.google.fonts/check/whitespace_ink",
"com.google.fonts/check/legacy_accents",
# "com.google.fonts/check/legacy_accents", # Disabled: issue #3595 / PR #4567
"com.google.fonts/check/required_tables",
"com.google.fonts/check/unwanted_tables",
"com.google.fonts/check/valid_glyphnames",
Expand Down
2 changes: 1 addition & 1 deletion tests/checks/universal_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -595,7 +595,7 @@ def test_check_whitespace_ink():
)


def test_check_legacy_accents():
def DISABLED_test_check_legacy_accents():
"""Check that legacy accents aren't used in composite glyphs."""
check = CheckTester("com.google.fonts/check/legacy_accents")

Expand Down

0 comments on commit 6b6bf2f

Please sign in to comment.