Skip to main content

Automated documentation generator for National Instruments TestStand™ sequence files

Project description

py-teststand-autodoc

PyPI version Python versions License: MIT OS Ruff uv ty pyrefly TestStand 2016-2026 Downloads

py-teststand-autodoc is an automated rich documentation generator from National Instruments TestStand™ sequence files.

Table of contents


📖 Overview

This project was inspired by Wovalab Antidoc Add-on for TestStand, which is built for the LabVIEW-TestStand ecosystem, because I missed option to easly integrate with Markdown static site generators like mentioned in Static Site Generators and easier integration with actual Python-based tooling.

It can be used in two ways:

  1. As a CLI tool
  2. As a Python library (via API - see examples)

⚠️Transparency

This generator does not reverse-engineer or natively parse .seq files: uses my other py-teststand project to interact with TestStand™ COM API. This means you need a valid TestStand™ installation and a proper TestStand™ License on the machine running the code.

🔒 Offline Capability

100% Offline Rendering: To address privacy concerns and support offline environments, all PDF and Markdown generation is performed strictly locally.

  • Diagrams: Mermaid.js diagrams are rendered entirely client-side using a bundled [mermaid.min.js](https://cdn.jsdelivr.net/npm/mermaid@11.15.0/dist/mermaid.min.js_ (stored in the package assets) driving a local headless browser session via Playwright.
  • Fonts: The PDF styling uses bundled UbuntuNerdFont-Regular and standard pre-installed Windows system fonts (such as Segoe UI for text and Cascadia Code / Consolas for code elements).

🚧 Project Status

This is a hobby project, maintained on a best-effort basis and not yet under active full-time development ahead of the first release. There is no fixed release schedule or formal support, but feel free to get in touch.

[!NOTE] Workspaces not currently supported: py-teststand-autodoc currently processes individual sequence files (.seq). Full workspace (.tsw) support is not yet implemented.

Treat it as experimental: wrapper behaviour may change between releases without notice (like error catching or high level imports).

If you hit a bug or unexpected behavior, open an issue with a reproducible case. That is the best way to get it fixed.

For now i prefer lightweight tags based releases (i protected them in repository settings) instead of fully described ones until reach 1.0.0 release.

🤖 AI-Assisted Development

This project leverages Large Language Models (LLMs) to assist with:

  • Codebase audits and refactoring.
  • Test coverage analysis and generation.
  • Documentation drafting.

This is an independent community project. These AI tools are used to optimize productivity and are not an official component of the project, nor do they integrate with or replace the official NIGEL™ AI Advisor provided by National Instruments. All generated code is manually reviewed by the maintainer to ensure it meets the project's quality standards.


🚀 Installation

Install py-teststand-autodoc using uv.

⚡ Global installation

Install the tool globally to use its CLI commands:

uv tool install py-teststand-autodoc

For PDF support, include the pdf extra:

uv tool install py-teststand-autodoc[pdf]

ℹ️ PDF generation uses Playwright to drive a headless Chromium browser (Windows 10+ system Edge by default), therefore no separate browser download is required.

📦 Direct execution

Run the tool without installing it globally by using uvx:

uvx py-teststand-autodoc <input_sequence.seq> -o <output_report.md>

To generate a PDF directly, include the pdf dependency:

uvx --with "py-teststand-autodoc[pdf]" py-teststand-autodoc <input_sequence.seq> -o <output_report.md> --pdf

💻 CLI usage

Generate reports using the py-teststand-autodoc and py-teststand-autodoc-pdf commands.

⚙️ Generate report from sequence

py-teststand-autodoc <input_sequence.seq> -o <output_report.md> [options]

Options:

  • --profile {engineer,business,station}: Documentation profile (default: engineer). The station profile generates a standalone station report with station options, station globals, and search directories.
  • --ignore-skipped: Omit skipped steps.
  • --models: Include process models.
  • --batch: Treat input as a directory and recursively convert all .seq files inside it.
  • --variable-scope {Locals,Parameters,FileGlobals,StationGlobals}: Variable scopes for the appendix.
  • --station: Include station options.
  • --types: Include custom types.
  • --types-all: Include all custom types, not just those attached to the file.
  • --file-custom-data-types: List custom data types defined in the file.
  • --estimate-software-delays: Sum Wait expressions to estimate minimum software delays.
  • --detailed-popup-messages: Include MessagePopup step details in Mermaid diagrams.
  • --author <name>: Author name for the header (default: Jan Kowalski).
  • --company <name>: Company name for the header (default: Yesterday Future Company).
  • --email <email>: Author email for the header.
  • --version <version>: Document version for the header.
  • --pdf: Also render a PDF next to the output file via headless browser.
  • --custom-css <path>: Path to a custom CSS file to inject into PDF rendering (can override accent color).
  • --browser {msedge,chrome,chromium}: Chromium channel for PDF rendering (default: msedge).

🎨 Custom CSS

The default PDF stylesheet is bundled at src/py_teststand_autodoc/rendering/pdf.css.

📂 Examples

By default, the engineer profile generates all [potentially] useful data (process models, variables by their scope, station options, templates, types) and uses the extended Markdown syntax automatically:

# Generates a comprehensive engineering report with all data included
py-teststand-autodoc <input_sequence.seq> -o <output_report.md>

The examples/ directory contains sample scripts for the CLI and API usage. Check them out to learn how to integrate py-teststand-autodoc into your own scripts!

examples/
├── cli/
│   ├── run_all.bat
│   └── run_station.bat
└── api/
    ├── basic_generation.py
    ├── business_profile.py
    ├── extended_metadata.py
    ├── pdf_rendering.py
    ├── full.py
    ├── batch_workspace_conversion.py
    └── station.py

🔗 Compatibility

🖥️ TestStand™ & Environment

Component Versions
Windows 10+
Python 3.11 to 3.14
TestStand™ 2016 to 2026

Older TestStand™ engine versions may also work if the underlying COM interfaces have not changed, but they are not explicitly tested.

🌐 Static Site Generators

The generated Markdown output is strictly tested and validated for full compatibility with modern static site generators like:

Additional Markdown validation using markdownlint-cli2


🧰 Technical stack

Tool Purpose
uv Python package and project manager
ty Static type checker for interface validation
ruff Linter and code formatter
pyrefly Static type checker
pytest Unit and integration test runner
Playwright Headless Chromium browser for PDF rendering

⚖️ Legal

TestStand™ is a registered trademark of National Instruments Corporation. Refer to NI's TestStand™ licensing options for information on required licenses to operate the TestStand™ engine.

py-teststand-autodoc is an independent community project and is not affiliated with, endorsed by, or maintained by National Instruments or its parent company Emerson. References to the TestStand™ API are made solely for interoperability purposes.


📄 License

This project is licensed under the MIT License - see the LICENSE file and src/py_teststand_autodoc/assets/LICENSE.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

py_teststand_autodoc-0.2.2.tar.gz (3.0 MB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

py_teststand_autodoc-0.2.2-py3-none-any.whl (2.4 MB view details)

Uploaded Python 3

File details

Details for the file py_teststand_autodoc-0.2.2.tar.gz.

File metadata

  • Download URL: py_teststand_autodoc-0.2.2.tar.gz
  • Upload date:
  • Size: 3.0 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.22 {"installer":{"name":"uv","version":"0.11.22","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":null,"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

File hashes

Hashes for py_teststand_autodoc-0.2.2.tar.gz
Algorithm Hash digest
SHA256 1fa629f9e867e0c011d4157d67e4e98427d5c11bbd6e5140f436c43a299811e1
MD5 8c60d57bd5cda368cb7d3eaabccb439e
BLAKE2b-256 30756440c43e01d59aafc38b39c9407dec079d2673245f085c7919cb64a6094a

See more details on using hashes here.

File details

Details for the file py_teststand_autodoc-0.2.2-py3-none-any.whl.

File metadata

  • Download URL: py_teststand_autodoc-0.2.2-py3-none-any.whl
  • Upload date:
  • Size: 2.4 MB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.22 {"installer":{"name":"uv","version":"0.11.22","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":null,"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

File hashes

Hashes for py_teststand_autodoc-0.2.2-py3-none-any.whl
Algorithm Hash digest
SHA256 14527d7945d8fe98ec33f26e4c080f4bcf447a286db96183e3d67b4865a92a80
MD5 3faaa2e8827a253f294586627a427568
BLAKE2b-256 c7dc2a8d54724a29c85e9548f9e2ffa34df4f3fe87cec9ca90d55f6db431e239

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page