Skip to content
This repository has been archived by the owner on Nov 17, 2023. It is now read-only.

Commit

Permalink
Fix Nightly Tests for Binaries (#16451)
Browse files Browse the repository at this point in the history
* copy missing requirements file

* not treating numpy warnings as errors

* updating six package version

* Revert "updating six package version"

This reverts commit 02433c5.
  • Loading branch information
mseth10 authored and zachgk committed Oct 14, 2019
1 parent 8820220 commit 1256976
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/utils/notebook_test/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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:
errors.append("Warning:\n" + line)
if len(errors) > 0:
logging.error('\n'.join(errors))
Expand Down

0 comments on commit 1256976

Please sign in to comment.