Stations #

URLs: /stations (list), /stations/new, /stations/{id}, /stations/{id}/edit

A station is a bench — the set of instruments at a physical location that run tests against DUTs. The Stations entity pages are the browser surface for configuring them. Test engineers usually author station YAML directly in stations/*.yaml; the UI exists for quick edits, bench operators who don't want to touch YAML, and a usage overview that the YAML files don't give you on their own.

List — /stations #

A table with one row per station configured in the project. Columns:

ColumnWhat it shows
IDStation identifier
NameHuman-readable station name (falls back to ID when blank)
LocationPhysical location, when set
InstrumentsCount of instruments configured on the station
RunsTotal runs that have used this station
PassedRun count with outcome passed
FailedRun count with outcome failed
Last RunMost recent run start timestamp, browser-local time

A New Station button at the top right jumps to /stations/new. Clicking a row jumps to the detail view at /stations/{id}.

When no stations are configured, the table is replaced with an empty-state card explaining the entity and offering a Create Station button.

Detail — /stations/{id} #

A header bar (Back + Edit buttons — no Delete), one Station Information card with ID / name / description / location / supported test phases, then a tab strip with three tabs:

TabContent
InstrumentsOne row per instrument: Name, Driver, Resource, Manufacturer / Model, Serial, Cal Due, Status
SequencesThe sequences this station supports, with derived capability summary
Recent RunsA run table scoped to this station (DUT, Project, Started, Outcome)

When the URL points at a station that doesn't exist, the page shows a "Station not found." card.

Edit — /stations/{id}/edit #

A header bar with the station name and a "Changes auto-saved" hint (changes save as you type — there's no Save button). Below the header, a tab strip with two tabs:

TabContent
InfoName, Location, Description. Station ID is read-only after creation.
InstrumentsPer-instrument rows with Name, Driver, Resource. An "Add Instrument" button opens a dialog where you can pick a driver from the bundled library or type a Python import path.

New — /stations/new #

A single form with the same Info + Instruments fields as Edit, plus an editable Station ID at the top (renaming after creation means delete + recreate). After creation, the page redirects to /stations/{id}.

Underlying data #

Stations are stored as YAML in stations/*.yaml under the project root. The Edit and New forms write to these files directly; the List + Detail views read them. Changes outside the UI (e.g. you edit the YAML in an IDE) are picked up on next page load.

For the YAML schema, see Configuration reference → Stations. For the concept, see Concepts → Stations.

Common tasks #

  • Add a new instrument to a station — open /stations/{id}/edit, click Add Instrument, fill the dialog.
  • See yield by station — the List view's Passed and Failed columns give a quick read; the Metrics → Yield tab grouped by station gives the full picture.

See also #