summaryrefslogtreecommitdiff
path: root/GAP_End_to_End.ipynb
diff options
context:
space:
mode:
Diffstat (limited to 'GAP_End_to_End.ipynb')
-rw-r--r--GAP_End_to_End.ipynb5
1 files changed, 5 insertions, 0 deletions
diff --git a/GAP_End_to_End.ipynb b/GAP_End_to_End.ipynb
index 92910bb..bdb519f 100644
--- a/GAP_End_to_End.ipynb
+++ b/GAP_End_to_End.ipynb
@@ -38,6 +38,11 @@
"src_path = str(PACKAGE_ROOT / \"src\")\n",
"if src_path not in sys.path:\n",
" sys.path.insert(0, src_path)\n",
+ "subprocess.run(\n",
+ " [sys.executable, \"-m\", \"pytest\", \"-q\", str(PACKAGE_ROOT / \"tests\" / \"test_prompts.py\")],\n",
+ " cwd=PACKAGE_ROOT,\n",
+ " check=True,\n",
+ ")\n",
"print(f\"GAP package root: {PACKAGE_ROOT}\")"
]
},