Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions tests/test_auto_calibration.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
"""Tests for calibrate_pro.sensorless.auto_calibration — AutoCalibrationEngine."""

import sys
import tempfile
from pathlib import Path

Expand Down Expand Up @@ -163,6 +164,7 @@ def test_match_panel_fallback():
# -------------------------------------------------------------------------


@pytest.mark.skipif(sys.platform != "win32", reason="requires ctypes.windll (Windows)")
def test_run_calibration_software_only():
"""run_calibration with apply_ddc=False, apply_lut=False should produce
a result with ICC and LUT file paths."""
Expand All @@ -185,6 +187,7 @@ def test_run_calibration_software_only():
assert result.lut_path.endswith(".cube")


@pytest.mark.skipif(sys.platform != "win32", reason="requires ctypes.windll (Windows)")
def test_run_calibration_produces_verification():
"""run_calibration should populate verification data."""
engine = AutoCalibrationEngine()
Expand Down
Loading