Structure data mvp (#452)

* Structured data tech spec

* Architecture principles

* New schemas

* Updated schemas and specs

* Object extractor

* Add .coveragerc

* New tests

* Cassandra object storage

* Trying to object extraction working, issues exist
This commit is contained in:
cybermaggedon 2025-08-07 20:47:20 +01:00 committed by GitHub
parent 5de56c5dbc
commit 83f0c1e7f3
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
46 changed files with 5313 additions and 1629 deletions

35
.coveragerc Normal file
View file

@ -0,0 +1,35 @@
[run]
source =
trustgraph-base/trustgraph
trustgraph-flow/trustgraph
trustgraph-bedrock/trustgraph
trustgraph-vertexai/trustgraph
trustgraph-embeddings-hf/trustgraph
omit =
*/tests/*
*/test_*
*/conftest.py
*/__pycache__/*
*/venv/*
*/env/*
*/site-packages/*
# Disable coverage warnings for contract tests
disable_warnings = no-data-collected
[report]
exclude_lines =
pragma: no cover
def __repr__
raise AssertionError
raise NotImplementedError
if __name__ == .__main__.:
class .*\(Protocol\):
@(abc\.)?abstractmethod
[html]
directory = htmlcov
skip_covered = False
[xml]
output = coverage.xml