reminisce commented on a change in pull request #16451: Fix Nightly Tests for
Binaries
URL: https://github.com/apache/incubator-mxnet/pull/16451#discussion_r334267299
##########
File path: tests/utils/notebook_test/__init__.py
##########
@@ -111,7 +111,7 @@ def run_notebook(notebook, notebook_dir, kernel=None,
no_cache=False, temp_dir='
nbformat.write(notebook, output_file)
output_nb = io.open(output_file, mode='r', encoding='utf-8')
for line in output_nb:
- if "Warning:" in line:
+ if "Warning:" in line and "numpy operator signatures" not in
line:
Review comment:
The warning message of `numpy operator signature` is for python version <
3.5. It does not affect functionality, but merely used for building numpy op
documentation. I'm fine with this change.
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]
With regards,
Apache Git Services