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 2b969f7 commit 2f86d57Copy full SHA for 2f86d57
src/nwb_benchmarks/benchmarks/time_download.py
@@ -1,4 +1,5 @@
1
"""Basic benchmarks for timing download of remote NWB files using different methods."""
2
+from abc import ABC
3
4
from asv_runner.benchmarks.mark import skip_benchmark_if
5
from dandi.download import DownloadExisting, download
@@ -10,7 +11,7 @@
10
11
from .params_remote_download import hdf5_params, lindi_remote_rfs_params, zarr_params
12
13
-class BaseDandiAPIDownloadBenchmark(BaseBenchmark):
14
+class BaseDandiAPIDownloadBenchmark(BaseBenchmark, ABC):
15
"""
16
Base class for timing the download of remote NWB files using the DANDI API.
17
0 commit comments