diff --git a/.internal/pre_commit_tools/auto_add_tests.py b/.internal/pre_commit_tools/auto_add_tests.py index e59d6844e..be95f0e98 100755 --- a/.internal/pre_commit_tools/auto_add_tests.py +++ b/.internal/pre_commit_tools/auto_add_tests.py @@ -78,7 +78,6 @@ def auto_create_test(notebook_file_path: Path) -> None: def create_test_content(notebook_file_path: Path) -> str: return f"""from tests.utils_for_testbook import ( validate_quantum_program_size, - validate_quantum_model, wrap_testbook, ) from testbook.client import TestbookNotebookClient @@ -86,8 +85,6 @@ def create_test_content(notebook_file_path: Path) -> str: @wrap_testbook("{notebook_file_path.stem}", timeout_seconds={DEFAULT_TIMEOUTS_SECONDS}) def test_notebook(tb: TestbookNotebookClient) -> None: - # test models - validate_quantum_model(tb.ref("qmod")) # test quantum programs validate_quantum_program_size( tb.ref_pydantic("qprog"),