• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In
Info updated!

feihoo87 / QuLab
27%

Build:
DEFAULT BRANCH: master
Repo Added 16 Dec 2023 08:21AM UTC
Token CuyUc0krtN7qQlr79kjD4zvLE23hxzn3M regen
Build 223 Last
Files 155
Badge
Embed ▾
README BADGES
x

If you need to use a raster PNG badge, change the '.svg' to '.png' in the link

Markdown

Textile

RDoc

HTML

Rst

LAST BUILD ON BRANCH master
branch: SELECT
CHANGE BRANCH
x
Sync Branches
  • No branch selected
  • master
  • v2.0.0
  • v2.0.1
  • v2.0.2
  • v2.0.3a
  • v2.0.4
  • v2.0.5
  • v2.0.6
  • v2.0.7
  • v2.0.8
  • v2.0.9
  • v2.1.0
  • v2.1.1
  • v2.1.2
  • v2.1.3
  • v2.1.4
  • v2.10.0
  • v2.10.1
  • v2.10.10
  • v2.10.10a
  • v2.10.11
  • v2.10.12
  • v2.10.2
  • v2.10.3
  • v2.10.4
  • v2.10.5
  • v2.10.6
  • v2.10.8
  • v2.10.9b
  • v2.11.0
  • v2.11.1
  • v2.11.10
  • v2.11.11
  • v2.11.12
  • v2.11.13
  • v2.11.14
  • v2.11.15
  • v2.11.16
  • v2.11.2
  • v2.11.3
  • v2.11.4
  • v2.11.5
  • v2.11.6
  • v2.11.7
  • v2.11.8
  • v2.11.9a
  • v2.12.0
  • v2.12.1
  • v2.12.2
  • v2.12.3
  • v2.13.0
  • v2.13.1
  • v2.2.0
  • v2.2.3
  • v2.2.4
  • v2.2.5
  • v2.2.6
  • v2.2.7
  • v2.2.8
  • v2.3.0
  • v2.3.1
  • v2.3.2
  • v2.3.3
  • v2.3.4
  • v2.3.5
  • v2.3.6
  • v2.4.0b
  • v2.4.1
  • v2.4.10
  • v2.4.11
  • v2.4.12
  • v2.4.13
  • v2.4.14
  • v2.4.15
  • v2.4.16
  • v2.4.17
  • v2.4.18
  • v2.4.19
  • v2.4.2
  • v2.4.20
  • v2.4.3
  • v2.4.4
  • v2.4.5
  • v2.4.6
  • v2.4.7
  • v2.4.8
  • v2.4.9
  • v2.5.0
  • v2.5.1
  • v2.5.2
  • v2.5.3
  • v2.5.4
  • v2.5.5
  • v2.6.0
  • v2.6.1
  • v2.6.2
  • v2.7.0
  • v2.7.1
  • v2.7.10
  • v2.7.11
  • v2.7.12
  • v2.7.13
  • v2.7.14
  • v2.7.15
  • v2.7.16
  • v2.7.17
  • v2.7.18
  • v2.7.19
  • v2.7.2
  • v2.7.3
  • v2.7.4
  • v2.7.5
  • v2.7.6
  • v2.7.7
  • v2.7.8
  • v2.7.9
  • v2.8.0
  • v2.9.0
  • v2.9.1
  • v2.9.10
  • v2.9.2
  • v2.9.3
  • v2.9.4
  • v2.9.5
  • v2.9.6
  • v2.9.7
  • v2.9.8b
  • v2.9.9

14 Jul 2026 03:00PM UTC coverage: 27.216% (+1.3%) from 25.869%
29464789448

push

github

feihoo87
feat(visualization): add initial_points and batch add/remove to DataPicker

- Add initial_points parameter to __init__, supports (x, y) tuple and list-of-tuples
- Add add_points(x, y, record=True) for batch programmatic addition
- Add remove_points(x, y) for batch deletion by coordinate
- Add clear() to remove all points (undoable)
- Add _normalize_points() static method for input normalization
- Add _redraw_points() helper to deduplicate display update logic
- Refactor undo/redo to share _apply_history() and handle batch ops
- Fix set_fitter() to trigger fit on existing points immediately
- Add 30 tests and documentation in docs/visualization/

Co-Authored-By: Claude <noreply@anthropic.com>

109 of 120 new or added lines in 1 file covered. (90.83%)

1 existing line in 1 file now uncovered.

4726 of 17365 relevant lines covered (27.22%)

4.89 hits per line

Relevant lines Covered
Build:
Build:
17365 RELEVANT LINES 4726 COVERED LINES
4.89 HITS PER LINE
Source Files on master
  • Tree
  • List 155
  • Changed 1
  • Source Changed 0
  • Coverage Changed 1
Coverage ∆ File Lines Relevant Covered Missed Hits/Line

Recent builds

Builds Branch Commit Type Ran Committer Via Coverage
29464789448 master feat(visualization): add initial_points and batch add/remove to DataPicker - Add initial_points parameter to __init__, supports (x, y) tuple and list-of-tuples - Add add_points(x, y, record=True) for batch programmatic addition - Add remove_point... push 16 Jul 2026 01:43AM UTC feihoo87 github
27.22
26867516234 v2.13.1 Update version to 2.13.1 and fix import path in visualization module push 03 Jun 2026 06:24AM UTC feihoo87 github
25.87
26867508284 master Update version to 2.13.1 and fix import path in visualization module push 03 Jun 2026 06:23AM UTC feihoo87 github
25.87
24503119235 master Fix Windows CI: dispose SQLAlchemy engine before tmpdir cleanup On Windows, SQLite holds a file lock on storage.db. The TemporaryDirectory cleanup fails with PermissionError because the engine connection pool is still open. Explicitly dispose the... push 16 Apr 2026 09:38AM UTC feihoo87 github
25.87
24502154339 master Fix flaky watcher test for Linux/Windows CI The watchdog file watcher may fire duplicate events (inotify on Linux, ReadDirectoryChangesW on Windows). The second event sees an already- updated snapshot, producing empty changed_cells. Fix by collec... push 16 Apr 2026 09:15AM UTC feihoo87 github
25.87
24501468543 v2.13.0 Add qulab.trace module for Jupyter notebook behavior tracking Introduces a complete client-server system to record user actions in Jupyter notebooks (code execution, display outputs including inline matplotlib figures, parameter modifications, ma... push 16 Apr 2026 09:01AM UTC feihoo87 github
25.87
24501464751 master Add qulab.trace module for Jupyter notebook behavior tracking Introduces a complete client-server system to record user actions in Jupyter notebooks (code execution, display outputs including inline matplotlib figures, parameter modifications, ma... push 16 Apr 2026 08:59AM UTC feihoo87 github
25.87
22339117265 master Update documentation for Dataset set_array feature Add comprehensive documentation for the new set_array functionality: - usage.md: - Add '设置独立数组' section with usage examples - Add storage optimization table explaining pattern types - Upda... push 24 Feb 2026 06:18AM UTC feihoo87 github
20.62
22306429745 master Fix Windows path handling in load_chunk() for cross-platform compatibility - Normalize backslashes to forward slashes before path prefix checks - Fixes 'chunks/' and 'packs/' detection on Windows where paths use '\\' Co-Authored-By: Claude Opus ... push 23 Feb 2026 12:38PM UTC feihoo87 github
19.71
22305750169 master Add SQLite WAL mode support for improved concurrent access Enable WAL (Write-Ahead Logging) mode for SQLite databases to provide: - Better concurrent read/write performance - Reduced database locking errors - Improved multi-thread/multi-process s... push 23 Feb 2026 12:18PM UTC feihoo87 github
19.71
See All Builds (223)

Badge your Repo: QuLab

We detected this repo isn’t badged! Grab the embed code to the right, add it to your repo to show off your code coverage, and when the badge is live hit the refresh button to remove this message.

Could not find badge in README.

Embed ▾
README BADGES
x

If you need to use a raster PNG badge, change the '.svg' to '.png' in the link

Markdown

Textile

RDoc

HTML

Rst

Refresh
  • Settings
  • Repo on GitHub
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc