Real-Time or Offline Test Sync?

When developing or running tests in connected environments, you want to see results immediately. But testing doesn’t always happen online and offline uploads need to be possible, too. Our new release improves both scenarios.
Online Streaming
In connected environments, you want test results instantly, not after they finish. Our new release introduces real-time streaming for OpenHTF test scripts, powered by a new secure real-time infrastructure. Tests appear on your TofuPilot Runs page as soon as they start, with real-time step status tracking.

No code changes are needed on your side—just update the TofuPilot Python client, and live streaming kicks in automatically.
Offline Synch
TofuPilot now offers improved support for offline uploads when test stations aren’t directly connected, allowing offline uploads without losing accuracy. With the optional “started_at” field, analytics reflect the actual test date instead of the upload date, and upload capacity is now up to 1,000 runs per minute.
from tofupilot import TofuPilotClient import random from datetime import datetime, timedelta def main(): # Initialize the TofuPilot client. client = TofuPilotClient() # Create a test run for the unit with serial number "00102" and part # number "PCB01" random_digits = "".join([str(random.randint(0, 9)) for _ in range(5)]) serial_number = f"00220D4K{random_digits}" client.create_run( procedure_id="FVT1", unit_under_test={"serial_number": serial_number, "part_number": "PCB01"}, run_passed=True, started_at=datetime.now() - timedelta(days=1), duration=timedelta(seconds=23), ) if __name__ == "__main__": main()
Check out our new documentation page for more on this use case.
Updated Docs
We’ve revamped the TofuPilot docs with insights from our work on openhtf.org. You’ll find new guides, feature and code examples to help you get the most out of TofuPilot.
