From b33319c8caa06fc107738f9c31ae7195a8fdf747 Mon Sep 17 00:00:00 2001 From: Jesper Friis Date: Mon, 10 Apr 2023 00:17:33 +0200 Subject: [PATCH 1/2] Added two additional exceptions to emmocheck --- emmopy/emmocheck.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/emmopy/emmocheck.py b/emmopy/emmocheck.py index 415978c88..1482f6f80 100644 --- a/emmopy/emmocheck.py +++ b/emmopy/emmocheck.py @@ -82,6 +82,7 @@ def test_number_of_labels(self): "core.prefLabel", "core.altLabel", "core.hiddenLabel", + "foaf.logo", "0.1.logo", # foaf.logo ) ) @@ -119,6 +120,7 @@ def test_class_label(self): "2-manifold", "3-manifold", "C++", + "3DPrinting", ) ) exceptions.update(self.get_config("test_class_label.exceptions", ())) From 8689166f62cae97dc45c9e68648364735f822330 Mon Sep 17 00:00:00 2001 From: Jesper Friis Date: Sun, 16 Apr 2023 01:05:58 +0200 Subject: [PATCH 2/2] Removed 3DPrinting from exceptions, since it is not in EMMO any more --- emmopy/emmocheck.py | 1 - 1 file changed, 1 deletion(-) diff --git a/emmopy/emmocheck.py b/emmopy/emmocheck.py index 1482f6f80..4901900db 100644 --- a/emmopy/emmocheck.py +++ b/emmopy/emmocheck.py @@ -120,7 +120,6 @@ def test_class_label(self): "2-manifold", "3-manifold", "C++", - "3DPrinting", ) ) exceptions.update(self.get_config("test_class_label.exceptions", ()))