From 0c7ada1e63092aa6031e39edd667eb50b94ec83f Mon Sep 17 00:00:00 2001 From: Kodi Arfer Date: Mon, 8 Apr 2019 15:36:42 -0400 Subject: [PATCH] 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. --- setup.cfg | 1 + 1 file changed, 1 insertion(+) diff --git a/setup.cfg b/setup.cfg index e033c3b..3cce154 100644 --- a/setup.cfg +++ b/setup.cfg @@ -22,3 +22,4 @@ python_functions=test_* is_test_* hyx_test_* hyx_is_test_* filterwarnings = once::DeprecationWarning once::PendingDeprecationWarning + ignore::SyntaxWarning