Skip to content

Commit

Permalink
Re-enabled tests for cloud storage notebook
Browse files Browse the repository at this point in the history
  • Loading branch information
ckunki committed Aug 23, 2024
1 parent 998e01f commit 8a68e1e
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions test/notebooks/nbtest_cloud.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
import os
from notebook_test_utils import (
access_to_temp_secret_store,
notebook_runner,
set_log_level_for_libraries,
)

set_log_level_for_libraries()


def test_cloud_notebook(notebook_runner) -> None:

current_dir = os.getcwd()
try:
notebook_runner('main_config.ipynb')
notebook_runner('cloud_store_config.ipynb')
os.chdir('cloud')
notebook_runner('01_import_data.ipynb')
finally:
os.chdir(current_dir)

0 comments on commit 8a68e1e

Please sign in to comment.