All checks were successful
Test execution / Test-all (push) Successful in 2m14s
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.
4 lines
119 B
Python
4 lines
119 B
Python
from pathlib import Path
|
|
|
|
# Path to a local simple test schema
|
|
schema_file = Path(__file__).parent / 'testschema.yaml'
|