Unverified Commit 464b53f5 authored by Stas Bekman's avatar Stas Bekman Committed by GitHub
Browse files

[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
parent eb186bc1
...@@ -2,6 +2,7 @@ ...@@ -2,6 +2,7 @@
# by pytest before any tests are run # by pytest before any tests are run
import sys import sys
import warnings
from os.path import abspath, dirname, join from os.path import abspath, dirname, join
...@@ -9,3 +10,7 @@ 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. # 'pip install -e .[dev]' when switching between checkouts and running tests.
git_repo_path = abspath(join(dirname(dirname(__file__)), "src")) git_repo_path = abspath(join(dirname(dirname(__file__)), "src"))
sys.path.insert(1, git_repo_path) 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)
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment