Commit e28a197b authored by Ayaz Salikhov's avatar Ayaz Salikhov

Fix

parent 95ef61e1
...@@ -22,8 +22,8 @@ def test_nbconvert(container, test_file): ...@@ -22,8 +22,8 @@ def test_nbconvert(container, test_file):
timeout_ms = 600 timeout_ms = 600
LOGGER.info(f"Test that {test_file} notebook can be executed ...") LOGGER.info(f"Test that {test_file} notebook can be executed ...")
command = "jupyter nbconvert --to markdown " + \ command = "jupyter nbconvert --to markdown " + \
f"--ExecutePreprocessor.timeout={timeout_ms}" + \ f"--ExecutePreprocessor.timeout={timeout_ms} " + \
f"--output-dir {output_dir}" +\ f"--output-dir {output_dir} " + \
f"--execute {cont_data_dir}/{test_file}.ipynb" f"--execute {cont_data_dir}/{test_file}.ipynb"
c = container.run( c = container.run(
volumes={host_data_dir: {"bind": cont_data_dir, "mode": "ro"}}, volumes={host_data_dir: {"bind": cont_data_dir, "mode": "ro"}},
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment