mirror of
https://github.com/explosion/spaCy.git
synced 2024-11-13 05:07:03 +03:00
5eced281d8
* Added test for universe.json * Added contributor agreement * Ran black on test_universe_json.py
18 lines
478 B
Python
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"
|