spaCy/spacy/tests/universe/test_universe_json.py
Jette16 5eced281d8
Add universe test (#9278)
* Added test for universe.json

* Added contributor agreement

* Ran black on test_universe_json.py
2021-09-23 14:31:42 +02:00

18 lines
478 B
Python

import json
import re
from pathlib import Path
def test_universe_json():
root_dir = Path(__file__).parent
universe_file = root_dir / "universe.json"
with universe_file.open() as f:
universe_data = json.load(f)
for entry in universe_data["resources"]:
if "github" in entry:
assert not re.match(
r"^(http:)|^(https:)", entry["github"]
), "Github field should be user/repo, not a url"