We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0b8486b commit 9eb82baCopy full SHA for 9eb82ba
1 file changed
src/spikeinterface/extractors/tests/test_iblextractors.py
@@ -19,12 +19,15 @@ def setUpClass(cls):
19
from one.api import ONE
20
21
cls.eid = EID
22
- cls.one = ONE(
23
- base_url="https://openalyx.internationalbrainlab.org",
24
- password="international",
25
- silent=True,
26
- cache_dir=None,
27
- )
+ try:
+ cls.one = ONE(
+ base_url="https://openalyx.internationalbrainlab.org",
+ password="international",
+ silent=True,
+ cache_dir=None,
28
+ )
29
+ except:
30
+ pytest.skip("Skipping test due to server being down.")
31
try:
32
cls.recording = read_ibl_recording(eid=cls.eid, stream_name="probe00.ap", one=cls.one)
33
except requests.exceptions.HTTPError as e:
0 commit comments