Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
49 commits
Select commit Hold shift + click to select a range
ab25903
add grid lines
marsipu Jan 4, 2022
fc442f3
add grid lines to overview-bar
marsipu Jan 4, 2022
19cca3d
add vline to overview-bar and adapt vline to epochs
marsipu Jan 4, 2022
ffe94f7
facilitate clicking traces
marsipu Jan 9, 2022
eb7178b
fix scaling (really update shown data)
marsipu Jan 9, 2022
b2aac35
first plottable epochs (still with issues)
marsipu Jan 29, 2022
a5f8661
fixing xrange-bugs (but still not color-bug)
marsipu Jan 30, 2022
b110d72
fix vline
marsipu Jan 30, 2022
61dcb5d
fix not showing multiple colors
marsipu Feb 1, 2022
e2be387
bad toggling
marsipu Feb 4, 2022
77183b4
bad colors more consistent
marsipu Feb 4, 2022
e586d73
remove debugging remnant
marsipu Feb 4, 2022
879eaa0
fix precomputing on low epoch count
marsipu Feb 4, 2022
db814d6
fixes to pass epochs tests
marsipu Feb 5, 2022
7c7b60f
fix error due to duplication when removing annotation-description
marsipu Feb 5, 2022
46e644e
add pyqtgraph-specific tests
marsipu Feb 7, 2022
b94e2bc
unify messagebox-behaviour
marsipu Feb 7, 2022
0ea8a42
fix flake
marsipu Feb 7, 2022
afacdc4
improve specific pg_test
marsipu Feb 7, 2022
adb629a
fix missing attribute annotation_mode
marsipu Feb 7, 2022
582b085
Trying to fix endless CIs 1
marsipu Feb 7, 2022
38d8d72
remove bias from speed test
marsipu Feb 7, 2022
eda2401
update licenses
marsipu Feb 7, 2022
fe6ae64
refactor speed_test for epochs
marsipu Feb 7, 2022
a72f09f
add epochs speed test
marsipu Feb 8, 2022
901c2fc
add epochs speed results to pytest output
marsipu Feb 8, 2022
e8decf4
try fixing endless CIs
marsipu Feb 8, 2022
9083235
separate test actions
marsipu Feb 8, 2022
ba69e92
add waiting for precomputed data
marsipu Feb 8, 2022
987ed9b
fix missing attribute
marsipu Feb 8, 2022
cebe28a
fix missing n_epochs change
marsipu Feb 9, 2022
956de8e
Initialize LoadThread early
marsipu Feb 9, 2022
8e77518
Trace init and removal integrated into DataTrace
marsipu Feb 9, 2022
77050ed
prevent stacking of LoadThreads
marsipu Feb 9, 2022
60e7856
check CIs (must be reverted before merging!)
marsipu Feb 9, 2022
5646547
epoch_idx not similarily retrieved in tickValues and tickStrings of T…
marsipu Feb 9, 2022
5e43b08
adapt to changes from #47
marsipu Feb 11, 2022
106fc45
Fix flake
marsipu Feb 12, 2022
8847086
don't show annotations actions for epochs
marsipu Feb 12, 2022
fe3c699
raise version to invoke epochs-tests
marsipu Feb 13, 2022
21a943a
Fix butterfly issues
marsipu Feb 13, 2022
56ae8e5
stabilize scrolling
marsipu Feb 13, 2022
bd5dd87
fix for info._unlocked
marsipu Feb 13, 2022
327fb06
add colors to speed_test
marsipu Feb 13, 2022
8ff5253
epochs speed test for macOS only opengl
marsipu Feb 13, 2022
d938363
unlock info only for epochs
marsipu Feb 13, 2022
9d7b26c
Epochs on MacOS only with OpenGL
marsipu Feb 13, 2022
c290cf3
revert changes in qt_viz_tests.yml
marsipu Feb 13, 2022
560b7bb
tone down warning about Epochs and MacOS
marsipu Feb 13, 2022
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
4 changes: 3 additions & 1 deletion .github/workflows/qt_viz_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,9 @@ jobs:
run: mne sys_info
- run: pytest -m pgtest --cov=mne_qt_browser --cov-report=xml ../mne-python/mne/viz
name: Run MNE-Tests
- run: pytest mne_qt_browser/tests
- run: pytest mne_qt_browser/tests/test_pg_specific.py
name: Run pyqtgraph-specific tests
- run: pytest mne_qt_browser/tests/test_speed.py
name: Run benchmarks
- uses: codecov/codecov-action@v1
if: always()
Expand Down
Loading