Skip to content

Commit

Permalink
Small fix
Browse files Browse the repository at this point in the history
  • Loading branch information
tkilias committed Jan 29, 2024
1 parent 6fe43cc commit ebda7bd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/integration/test_notebooks_in_dss_docker_image.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,5 +69,5 @@ def test_notebook(notebook_test_container, notebook_test_file):
command_run_test = f'{virtual_env}/bin/python -m pytest --setup-show -s {notebook_test_file}'
environ = os.environ.copy()
environ["NBTEST_ACTIVE"] = "TRUE"
nbtest_environ = {key: value for key, value in environ if key.startswith("NBTEST_")}
nbtest_environ = {key: value for key, value in environ.items() if key.startswith("NBTEST_")}
exec_command(command_run_test, container, print_output=True, environment=nbtest_environ)

0 comments on commit ebda7bd

Please sign in to comment.