mirror of
https://github.com/open-metadata/OpenMetadata.git
synced 2025-08-19 06:28:03 +00:00

* Add PIICategoryTags and some utilities on top of them. * Fix static-check * Add test for fqn representation * Add NEREntityGeneralTags.json from Collate * Add test to check PIICategoryTags agree with the ones used by OM server * Add LabelExtractor * Fix style * Add ignore superflous-parens for pylint * Ass comment as per PR review * Fix not-updated PII-IT * Remove duplicated IT test for PII --------- Co-authored-by: Pere Menal <pere.menal@getcollate.io> Co-authored-by: Sriharsha Chintalapani <harshach@users.noreply.github.com>
6 lines
150 B
Python
6 lines
150 B
Python
from pathlib import Path
|
|
|
|
TESTS_ROOT_DIR = Path(__file__).parent
|
|
INGESTION_ROOT_DIR = TESTS_ROOT_DIR.parent
|
|
REPO_ROOT_DIR = INGESTION_ROOT_DIR.parent
|