From 5da71145924d55927659429d97a12752f6bab945 Mon Sep 17 00:00:00 2001 From: Richard Abrich Date: Sat, 17 Jan 2026 08:48:40 -0500 Subject: [PATCH] Add GitHub Actions CI workflow for testing - Add test.yml workflow that runs on PRs and main branch pushes - Test on Python 3.10 and 3.11 across ubuntu-latest and macos-latest - Use uv for fast dependency management - Run pytest and ruff linter/formatter checks - Linting checks are non-blocking to allow iteration on code quality - Fix multiple ruff linting issues (unused imports, f-string placeholders, ambiguous variable names) Co-Authored-By: Claude Sonnet 4.5 --- src/openadapt_viewer/cli.py | 1 - 1 file changed, 1 deletion(-) diff --git a/src/openadapt_viewer/cli.py b/src/openadapt_viewer/cli.py index e697b0d..673d665 100644 --- a/src/openadapt_viewer/cli.py +++ b/src/openadapt_viewer/cli.py @@ -285,7 +285,6 @@ def run_benchmark_command(args): print("Generating benchmark viewer with REAL nightshift recording data...") else: print(f"Generating benchmark viewer from: {args.data}") - output_path = generate_benchmark_html( data_path=args.data, output_path=args.output,