Ignore SyntaxWarnings while testing

Python 3.8 introduces SyntaxWarnings for some things we test, like trying to call a string literal as if it were a function.
This commit is contained in:
Kodi Arfer 2019-04-08 15:36:42 -04:00
parent 9f519ed208
commit 0c7ada1e63
1 changed files with 1 additions and 0 deletions

View File

@ -22,3 +22,4 @@ python_functions=test_* is_test_* hyx_test_* hyx_is_test_*
filterwarnings =
once::DeprecationWarning
once::PendingDeprecationWarning
ignore::SyntaxWarning