Skip to content
Snippets Groups Projects

:rocket: fix running all tests

Merged Vincent Hatakeyama requested to merge topic/18.0/fix-tests into branch/18.0
8 files
+ 46
44
Compare changes
  • Side-by-side
  • Inline
Files
8
+ 2
2
import json
import pkgutil
from typing import Any
from collections.abc import Generator
from collections.abc import Iterator
@@ -5,6 +5,6 @@
def get_schemas() -> Generator[Any]:
def get_schemas() -> Iterator[Any]:
for file_prefix in ("product",):
data: bytes | None = pkgutil.get_data(__name__, f"{file_prefix}.schema.json")
if data:
Loading