From 464b53f5e479d7f6a07fbc62b0f5335e9b55a1dc Mon Sep 17 00:00:00 2001 From: Stas Bekman Date: Fri, 16 Oct 2020 00:35:39 -0700 Subject: [PATCH] [testing] disable FutureWarning in examples tests (#7842) * [testing] disable FutureWarning in examples tests same as tests/conftest.py, we can't resolve those warning, so turn the noise off. * fix --- examples/conftest.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/examples/conftest.py b/examples/conftest.py index 0a83207cb5..0cd00bcdc9 100644 --- a/examples/conftest.py +++ b/examples/conftest.py @@ -2,6 +2,7 @@ # by pytest before any tests are run import sys +import warnings from os.path import abspath, dirname, join @@ -9,3 +10,7 @@ from os.path import abspath, dirname, join # 'pip install -e .[dev]' when switching between checkouts and running tests. git_repo_path = abspath(join(dirname(dirname(__file__)), "src")) sys.path.insert(1, git_repo_path) + +# silence FutureWarning warnings in tests since often we can't act on them until +# they become normal warnings - i.e. the tests still need to test the current functionality +warnings.simplefilter(action="ignore", category=FutureWarning)