mirror of
https://github.com/jupyter/docker-stacks.git
synced 2025-10-12 12:32:58 +00:00
Revert timeout increase because we don't use QEMU as now
This commit is contained in:
@@ -28,7 +28,7 @@ def test_package_manager(
|
|||||||
f"Test that the package manager {package_manager} is working properly ..."
|
f"Test that the package manager {package_manager} is working properly ..."
|
||||||
)
|
)
|
||||||
container.run_and_wait(
|
container.run_and_wait(
|
||||||
timeout=30,
|
timeout=5,
|
||||||
tty=True,
|
tty=True,
|
||||||
command=["start.sh", "bash", "-c", f"{package_manager} {version_arg}"],
|
command=["start.sh", "bash", "-c", f"{package_manager} {version_arg}"],
|
||||||
)
|
)
|
||||||
|
@@ -33,7 +33,7 @@ def test_nbconvert(
|
|||||||
)
|
)
|
||||||
command = f"jupyter nbconvert {cont_data_dir}/{test_file}.ipynb --output-dir {output_dir} --to {output_format}"
|
command = f"jupyter nbconvert {cont_data_dir}/{test_file}.ipynb --output-dir {output_dir} --to {output_format}"
|
||||||
logs = container.run_and_wait(
|
logs = container.run_and_wait(
|
||||||
timeout=120,
|
timeout=30,
|
||||||
volumes={str(host_data_dir): {"bind": cont_data_dir, "mode": "ro"}},
|
volumes={str(host_data_dir): {"bind": cont_data_dir, "mode": "ro"}},
|
||||||
tty=True,
|
tty=True,
|
||||||
command=["start.sh", "bash", "-c", command],
|
command=["start.sh", "bash", "-c", command],
|
||||||
|
Reference in New Issue
Block a user