()
| 13 | |
| 14 | |
| 15 | def _load_runner_module(): |
| 16 | runner_path = REPO_ROOT / "experiments" / "run_pipeline.py" |
| 17 | spec = importlib.util.spec_from_file_location("openquant_experiment_runner", runner_path) |
| 18 | assert spec is not None |
| 19 | module = importlib.util.module_from_spec(spec) |
| 20 | assert spec.loader is not None |
| 21 | spec.loader.exec_module(module) |
| 22 | return module |
| 23 | |
| 24 | |
| 25 | def test_notebook_script_parity_pipeline_key_metrics(): |
no outgoing calls
no test coverage detected