-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
#335: Fixed DNS resolution in ITDE when running jupyter notebook tests #336
Conversation
Check out this pull request on See visual diffs & provide feedback on Jupyter Notebooks. Powered by ReviewNB |
@@ -81,7 +81,7 @@ def test_notebook(notebook_test_container_with_log, notebook_test_file, notebook | |||
virtual_env = exec_command(command_echo_virtual_env, container) | |||
command_run_test = ( | |||
f"{virtual_env}/bin/python" | |||
f" -m pytest --setup-show -s --backend={notebook_test_backend} {notebook_test_file}" | |||
f" -m pytest --setup-show -s --backend={notebook_test_backend} --itde-nameserver='8.8.8.8' --{notebook_test_file}" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Not sure if this is the correct way
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ok, according to the tests this should be ok:
https://github.com/exasol/pytest-plugins/blob/f158045b3045f9065d9d8ce0c16aad3f3806d941/pytest-backend/test/integration/pytest_backend_test.py#L67
3ac953d
to
44ec19b
Compare
Currently, some of the sample data is not available, as well as some of the links in the Jupyter notebooks are broken. E.g. https://archive.ics.uci.edu/static/public/1/abalone.zip shows HTTP Error 502: Bad Gateway |
fixes #335