From 12569767896d38fca24ccb8b7164c9cfa2b64fbc Mon Sep 17 00:00:00 2001 From: Manu Seth <22492939+mseth10@users.noreply.github.com> Date: Mon, 14 Oct 2019 12:35:38 -0700 Subject: [PATCH] Fix Nightly Tests for Binaries (#16451) * copy missing requirements file * not treating numpy warnings as errors * updating six package version * Revert "updating six package version" This reverts commit 02433c5d43aace7927382f7bb6f5566720848206. --- tests/utils/notebook_test/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/utils/notebook_test/__init__.py b/tests/utils/notebook_test/__init__.py index 0a794cd13619..3cbc8211b17f 100644 --- a/tests/utils/notebook_test/__init__.py +++ b/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: errors.append("Warning:\n" + line) if len(errors) > 0: logging.error('\n'.join(errors))