Skip to content

Releases: viadee/roboscope

v0.5.0

02 Mar 16:09
f6253ec

Choose a tag to compare

RoboScope v0.5.0

Changes

  • Version bump from 0.1.0 to 0.5.0 reflecting project maturity
  • Distribution rename: online build is now the default roboscope.zip; offline build renamed to roboscope_offline_version.zip
  • Makefile: make build-dist runs the online build; new make build-dist-offline for offline variant
  • Dependency fix: added colorama as explicit dependency for Windows offline builds
  • Refactor: removed legacy Celery naming references (renamed to task_executor)

RoboScope v0.1.0

26 Feb 13:19

Choose a tag to compare

RoboScope v0.1.0 — Initial Release

Web-based Robot Framework Test Management Tool with Git integration, GUI execution, report analysis, environment management, and container runtime.

Highlights

  • Project Management — Clone Git repos or link local folders, branch management, auto-sync
  • Test Explorer — Browse test files, parse Robot Framework keywords/tests, library dependency check
  • Test Execution — Run tests via subprocess or Docker, live WebSocket status updates, scheduling
  • Environment Management — Create Python virtual environments with uv, install/manage packages
  • Report Analysis — Parse output.xml, compare runs, view embedded HTML reports
  • AI-Powered Analysis — LLM-based failure root-cause analysis (OpenAI, Anthropic, OpenRouter, Ollama)
  • Statistics & KPIs — Pass rate trends, flaky test detection, heatmaps, deep analysis (15 KPIs)
  • AI Code Generation — Generate .robot files from .roboscope YAML specs
  • Role-Based Access — Four roles: Viewer, Runner, Editor, Admin
  • Multi-Language UI — English, German, French, Spanish
  • In-App Documentation — Searchable docs with print/PDF export
  • Offline Deployment — Standalone ZIP with bundled dependencies for air-gapped environments

Downloads

File Size Description
roboscope.zip ~224 MB Offline — includes all Python wheels + uv binaries for Windows, macOS, Linux. No internet required during install.
roboscope-online.zip ~1.1 MB Online — lightweight, downloads dependencies from PyPI during install. Requires internet.

Quick Start

unzip roboscope.zip && cd roboscope
./install-mac-and-linux.sh    # or install-windows.bat
./start-mac-and-linux.sh      # or start-windows.bat

Open http://localhost:8145 — Default login: admin@roboscope.local / admin123

Requirements

  • Python 3.10+ (3.12+ recommended)
  • No Redis or external services required
  • uv is bundled (offline) or auto-installed (online)

Tech Stack

  • Backend: FastAPI, SQLAlchemy 2.0, Python 3.12+
  • Frontend: Vue 3, TypeScript, Pinia, Vite
  • Package Management: uv (replaces pip/venv)
  • Database: SQLite (default) or PostgreSQL
  • Tests: 555 backend tests, 243 E2E tests (all passing)