From 426ddccabdf29f80697ced1d7d6b7d5b25251d74 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Felipe=20Corr=C3=AAa=20da=20Silva=20Sanches?= Date: Fri, 17 Jan 2025 01:10:23 -0300 Subject: [PATCH] no_debugging_tables was merged into unwanted_tables (https://github.com/fonttools/fontbakery/pull/4973) --- .../tests/test_checks_no_debugging_tables.py | 23 ------------------- profile-universal/src/lib.rs | 1 - 2 files changed, 24 deletions(-) delete mode 100644 fontspector-py/tests/test_checks_no_debugging_tables.py diff --git a/fontspector-py/tests/test_checks_no_debugging_tables.py b/fontspector-py/tests/test_checks_no_debugging_tables.py deleted file mode 100644 index c2afccf..0000000 --- a/fontspector-py/tests/test_checks_no_debugging_tables.py +++ /dev/null @@ -1,23 +0,0 @@ -from fontTools.ttLib import TTFont - -import pytest - -from conftest import check_id -from fontbakery.codetesting import ( - TEST_FILE, - assert_PASS, - assert_results_contain, -) -from fontbakery.status import WARN - - -@pytest.mark.skip(reason="Check not yet implemented") -@check_id("no_debugging_tables") -def test_check_no_debugging_tables(check): - """Ensure fonts do not contain any preproduction tables.""" - - ttFont = TTFont(TEST_FILE("overpassmono/OverpassMono-Regular.ttf")) - assert_results_contain(check(ttFont), WARN, "has-debugging-tables") - - del ttFont["FFTM"] - assert_PASS(check(ttFont)) diff --git a/profile-universal/src/lib.rs b/profile-universal/src/lib.rs index fd85702..5dd8890 100644 --- a/profile-universal/src/lib.rs +++ b/profile-universal/src/lib.rs @@ -178,7 +178,6 @@ include_profiles = ["opentype"] # "ots", # ots checks need to be directly integrated # "ttx_roundtrip", # What's ttx? :-) # "vttclean", # merged into unwanted_tables - # "no_debugging_tables", # merged into unwanted_tables # "fontspector_version", # we'll just do this once at the start of the program, doesn't make sense for web # "kerning_for_non_ligated_sequences", # I just think this is a bad check # "unique_glyphnames", # valid_glyphnames also checks for uniqueness