[pytest] # Graph Query Service test configuration. # # Tests run on the host (not inside the Dockerfile) and only exercise the # pure-Python query-engine paths — Neo4j is mocked via the # ``mock_engine`` fixture in ``tests/conftest.py``. We intentionally # keep the test config minimal so any developer can run ``pytest`` from # this directory with the same Python that satisfies the service # ``requirements.txt`` pins. testpaths = tests python_files = test_*.py python_classes = Test* python_functions = test_* addopts = -ra --strict-markers --strict-config markers = unit: lightweight tests with mocked dependencies (default for this suite) integration: opt-in tests that require a real Neo4j instance