mirror of
https://github.com/saymrwulf/transformers.git
synced 2026-05-14 20:58:08 +00:00
ignore FutureWarning in tests (#7079)
This commit is contained in:
parent
15d18e0307
commit
576eec98e0
1 changed files with 6 additions and 0 deletions
|
|
@ -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,8 @@ 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)
|
||||
|
|
|
|||
Loading…
Reference in a new issue