Skip to content

Commit

Permalink
fix-notebookrun: exclude HeadWidget notebook for testing purposes
Browse files Browse the repository at this point in the history
  • Loading branch information
915-Misan-Teodora committed Jul 31, 2024
1 parent f2456b4 commit c0ccb06
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dev/notebook_runner.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ def execute_notebook(in_path, notebook):
if not os.getenv('CLB_AUTH'):
os.environ['CLB_AUTH'] = 'abc'

notebooks = [file for file in os.listdir(in_path) if file.endswith(".ipynb") and not file.startswith('TimeSeriesEDF')]
notebooks = [file for file in os.listdir(in_path) if file.endswith(".ipynb") and not file.startswith('HeadWidget')]

# start as many threads as logical cpus
with ThreadPool(cpu_count()) as pool:
Expand Down

0 comments on commit c0ccb06

Please sign in to comment.