dump-things-service/dump_things_service/tests/__init__.py
Christian Monch 0cd1faf45b add collection configuration checks
Check the following two conditions when
new collections are created:

1. the name of the collection is not a
   reserved name.

2. collections do not share incoming or
   curated directories with other collections.
   This is done to prevent data leaks, which
   could happen when different collections
   share directories.
2026-06-12 12:41:54 +02:00

4 lines
119 B
Python

from pathlib import Path
# Path to a local simple test schema
schema_file = Path(__file__).parent / 'testschema.yaml'