ai-content-maker/.venv/Lib/site-packages/thinc/tests/regression/issue519/test_issue519.py

30 lines
817 B
Python

import subprocess
import sys
try:
import importlib.resources as importlib_resources
except ImportError:
import importlib_resources # type: ignore
import pytest
@pytest.mark.slow
def test_issue519():
"""
Test ability of Thinc mypy plugin to handle variadic arguments.
This test can take up to 45 seconds, and is thus marked as slow.
"""
# Determine the name of the parent module (which contains the test program)
parent_module_name = __name__[: __name__.rfind(".")]
# Load test program that calls a Thinc API with variadic arguments
program_text = importlib_resources.read_text(parent_module_name, "program.py")
# Ask Mypy to type-check the loaded program text
subprocess.run(
[sys.executable, "-m", "mypy", "--command", program_text], check=True
)