Skip to content
Open
Show file tree
Hide file tree
Changes from 28 commits
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
d12105c
More tri-part makes. Allow db no-connect import fail in validate.py
CBroz1 Feb 18, 2026
3841e9a
Fix local docker test_install.py runs
CBroz1 Feb 19, 2026
9fcd4de
Fix missing variable name
CBroz1 Feb 19, 2026
5c89f6d
Fetch #1529 fix from @samuelbray
CBroz1 Feb 19, 2026
651180f
Revise mock cdf to avoid teardown error
CBroz1 Feb 19, 2026
9543e5b
Prevent decoding teardown error
CBroz1 Feb 19, 2026
2c38b43
Denoising tests
CBroz1 Feb 19, 2026
a8ec95d
Denoising tests 2
CBroz1 Feb 19, 2026
f0fe311
Denoising tests 3
CBroz1 Feb 20, 2026
7f7add8
Denoising tests 4
CBroz1 Feb 20, 2026
7d7f0a1
Denoising tests 5
CBroz1 Feb 20, 2026
7994c62
Denoising tests 6
CBroz1 Feb 20, 2026
ac839e3
Revert subset of denoising
CBroz1 Feb 20, 2026
57bc8e0
Update changelog
CBroz1 Feb 20, 2026
4e61e6f
Revert 2
CBroz1 Feb 20, 2026
99dd9c5
Revert 3
CBroz1 Feb 20, 2026
2b843cc
Apply suggestions from code review
CBroz1 Feb 20, 2026
e6b02aa
Apply more suggestions
CBroz1 Feb 20, 2026
077ea43
Fix 'overwrite' overwrite
CBroz1 Feb 20, 2026
f22b655
Denoise tests 7
CBroz1 Feb 21, 2026
cc47d9f
Revert
CBroz1 Feb 21, 2026
3b914fb
Respond to PR comments
CBroz1 Feb 22, 2026
439dd4e
Denoise tests 8
CBroz1 Feb 22, 2026
4e6ed78
Remove redundant log
CBroz1 Feb 22, 2026
768d070
Review feedback
CBroz1 Feb 22, 2026
beb9c20
Update scripts/install.py
CBroz1 Feb 22, 2026
0c67f6a
Review feedback
CBroz1 Feb 22, 2026
17eb01f
Merge branch 'master' into fix
CBroz1 Feb 24, 2026
e1d306d
Expand DLCProject.config_path to accommodate different base_dirs
CBroz1 Feb 25, 2026
a929a10
No-teardown inconsistency fixes
CBroz1 Feb 25, 2026
75e6b2c
Fetch tests from 1529 @samuelbray32
CBroz1 Feb 26, 2026
27f399d
Merge branch 'fix' of https://github.com/cbroz1/spyglass into fix
CBroz1 Feb 26, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -140,6 +140,7 @@ for label, interval_data in results.groupby("interval_labels"):
- Remove imports of ndx extensions in main package to prevent errors in nwb io
#1506
- Add `analysis_table` property to mixin for custom pipelines #1525
- Quiet pytest output for expected warnings in test runs #1534

### Pipelines

Expand Down
4 changes: 4 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,11 @@ filterwarnings = [
"ignore::ResourceWarning:.*",
"ignore::DeprecationWarning:.*",
"ignore::UserWarning:.*",
"ignore::FutureWarning:.*",
"ignore::PerformanceWarning:.*",
"ignore::MissingRequiredBuildWarning:.*",
# DLC training ends by cancelling a TF enqueue thread; expected, not a bug
"ignore::pytest.PytestUnhandledThreadExceptionWarning",
]
markers = [
# Speed-based markers (based on total time: setup + call + teardown)
Expand Down
Loading
Loading