Skip to content

Commit

Permalink
Do not rewrite variable with another value
Browse files Browse the repository at this point in the history
  • Loading branch information
mathbunnyru committed Jan 23, 2024
1 parent 009821c commit 7a5990b
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions tests/scipy-notebook/test_matplotlib.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,11 +38,10 @@ def test_matplotlib(
cont_data_dir = "/home/jovyan/data"
output_dir = "/tmp"
LOGGER.info(description)
command = "sleep infinity"
running_container = container.run_detached(
volumes={str(host_data_dir): {"bind": cont_data_dir, "mode": "ro"}},
tty=True,
command=["bash", "-c", command],
command=["bash", "-c", "sleep infinity"],
)
command = f"python {cont_data_dir}/{test_file}"
cmd = running_container.exec_run(command)
Expand Down

0 comments on commit 7a5990b

Please sign in to comment.