Remove NumPy dependency from quantum simulator and expand tests

This commit is contained in:
Alexa Amundson
2025-11-10 23:04:23 -06:00
parent 252211621d
commit 5dfdd5cda8
5 changed files with 206 additions and 71 deletions

6
tests/conftest.py Normal file
View File

@@ -0,0 +1,6 @@
import pathlib
import sys
PROJECT_ROOT = pathlib.Path(__file__).resolve().parents[1]
if str(PROJECT_ROOT) not in sys.path:
sys.path.insert(0, str(PROJECT_ROOT))