#!/usr/bin/env python3 """Batch A — D638 tensile from 2026-05-25 print job (5 specimens, tested 2026-05-26).""" from _lib import process_session SESSION = { "session_folder": "2026_05_26", "test_folder": "TST1.Test", "xlsx_name": "tensile_testing_5.26.xlsx", "astm": {"standard": "D638", "type": "Type I", "year": "2022"}, "batch_label": "A", "test_runs": [(i, "SLS", "2026-05-25") for i in range(1, 6)], } if __name__ == "__main__": process_session(SESSION)