Skip to content

Commit

Permalink
test general skip
Browse files Browse the repository at this point in the history
  • Loading branch information
h-mayorquin committed Aug 6, 2024
1 parent 0b8486b commit 9eb82ba
Showing 1 changed file with 9 additions and 6 deletions.
15 changes: 9 additions & 6 deletions src/spikeinterface/extractors/tests/test_iblextractors.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,15 @@ def setUpClass(cls):
from one.api import ONE

cls.eid = EID
cls.one = ONE(
base_url="https://openalyx.internationalbrainlab.org",
password="international",
silent=True,
cache_dir=None,
)
try:
cls.one = ONE(
base_url="https://openalyx.internationalbrainlab.org",
password="international",
silent=True,
cache_dir=None,
)
except:
pytest.skip("Skipping test due to server being down.")
try:
cls.recording = read_ibl_recording(eid=cls.eid, stream_name="probe00.ap", one=cls.one)
except requests.exceptions.HTTPError as e:
Expand Down

0 comments on commit 9eb82ba

Please sign in to comment.