File size: 530 Bytes
0f6d5bb | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | #!/usr/bin/env python3
"""Batch D flex — D790 from 2026-06-07 print job (8 specimens, tested 2026-06-10)."""
from _lib import process_session
SESSION = {
"session_folder": "2026_06_10/Batch D 3pt test",
"test_folder": "TST1.Test",
"xlsx_name": "flex_test_6.10.xlsx",
"astm": {"standard": "D790", "type": "Procedure A", "year": "2017"},
"batch_label": "D",
"test_runs": [(i, "SLS", "2026-06-07") for i in range(1, 9)],
}
if __name__ == "__main__":
process_session(SESSION)
|