Initialize
Some checks failed
Build wheels / build (ubuntu-latest, 3.11) (push) Has been cancelled
Build wheels / build (ubuntu-latest, 3.12) (push) Has been cancelled
Build wheels / build (ubuntu-latest, 3.13) (push) Has been cancelled
docs / evaluate-label (push) Has been cancelled
Tests / check (push) Has been cancelled
docs / deploy-docs (push) Has been cancelled
Tests / build (ubuntu-latest, 3.11) (push) Has been cancelled
Tests / build (ubuntu-latest, 3.12) (push) Has been cancelled
Tests / build (ubuntu-latest, 3.13) (push) Has been cancelled

This commit is contained in:
2026-04-15 21:10:21 +08:00
commit c4a82614b3
47 changed files with 9702 additions and 0 deletions

66
tests/conftest.py Normal file
View File

@@ -0,0 +1,66 @@
"""conftest.py.
Pytest fixtures.
"""
import sys
import pytest
# backends to be tested
# TODO: add cutensornet and quimb here as well
BACKENDS = ["cutensornet"]
# BACKENDS = ["qmatchatea"]
def get_backend(backend_name):
from qibotn.backends.cutensornet import CuTensorNet
from qibotn.backends.qmatchatea import QMatchaTeaBackend
NAME2BACKEND = {"qmatchatea": QMatchaTeaBackend, "cutensornet": CuTensorNet}
return NAME2BACKEND[backend_name]()
AVAILABLE_BACKENDS = []
for backend_name in BACKENDS:
try:
_backend = get_backend(backend_name)
AVAILABLE_BACKENDS.append(backend_name)
except (ModuleNotFoundError, ImportError):
pass
def pytest_runtest_setup(item):
ALL = {"darwin", "linux"}
supported_platforms = ALL.intersection(mark.name for mark in item.iter_markers())
plat = sys.platform
if supported_platforms and plat not in supported_platforms: # pragma: no cover
# case not covered by workflows
pytest.skip(f"Cannot run test on platform {plat}.")
@pytest.fixture
def backend(backend_name):
yield get_backend(backend_name)
def pytest_runtest_setup(item):
ALL = {"darwin", "linux"}
supported_platforms = ALL.intersection(mark.name for mark in item.iter_markers())
plat = sys.platform
if supported_platforms and plat not in supported_platforms: # pragma: no cover
# case not covered by workflows
pytest.skip(f"Cannot run test on platform {plat}.")
def pytest_configure(config):
config.addinivalue_line("markers", "linux: mark test to run only on linux")
def pytest_generate_tests(metafunc):
module_name = metafunc.module.__name__
if "backend_name" in metafunc.fixturenames:
metafunc.parametrize("backend_name", AVAILABLE_BACKENDS)