Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/master'
Browse files Browse the repository at this point in the history
  • Loading branch information
bendichter committed Dec 31, 2021
2 parents 27b4f85 + 0b924c6 commit dec17c7
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install -r requirements-dev.txt
- name: Install nwbwidgets
run: |
pip install -e .
Expand Down
11 changes: 11 additions & 0 deletions requirements-dev.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
pynwb
ipympl
ipywidgets
matplotlib
numpy
ipyvolume
ndx_grayscalevolume
plotly
tqdm>=4.36.0
ndx-spectrum
aiohttp
6 changes: 5 additions & 1 deletion test/test_ecephys.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
from pynwb import TimeSeries
from pynwb.ecephys import SpikeEventSeries, ElectricalSeries, LFP

from nwbwidgets.ecephys import show_spectrogram, show_spike_event_series
from nwbwidgets.ecephys import show_spectrogram, show_spike_event_series, show_ccf
from nwbwidgets.view import default_neurodata_vis_spec
from nwbwidgets.base import show_multi_container_interface
from nwbwidgets import nwb2widget
Expand Down Expand Up @@ -105,3 +105,7 @@ def test_show_spectrogram():

channel = 3
show_spectrogram(ts, channel=channel)


def test_show_ccf():
show_ccf()

0 comments on commit dec17c7

Please sign in to comment.