Revert timeout increase because we don't use QEMU as now

This commit is contained in:
Ayaz Salikhov
2022-05-13 11:51:27 +03:00
parent 940767ec4c
commit 4b22cb0d02
2 changed files with 2 additions and 2 deletions

View File

@@ -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}"],
) )

View File

@@ -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],