From 498a54e770610c1af720a91ffaec0e46669a4b02 Mon Sep 17 00:00:00 2001 From: Kodi Arfer Date: Wed, 30 May 2018 10:42:00 -0700 Subject: [PATCH] Fix discovery of tests with mangled names --- setup.cfg | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/setup.cfg b/setup.cfg index 18c8fbc..e033c3b 100644 --- a/setup.cfg +++ b/setup.cfg @@ -17,9 +17,8 @@ exclude_lines = ignore_errors = True [tool:pytest] -# Be sure to include Hy test functions whose names end with "?", -# which will be mangled to begin with "is_". -python_functions=test_* is_test_* +# Be sure to include Hy test functions with mangled names. +python_functions=test_* is_test_* hyx_test_* hyx_is_test_* filterwarnings = once::DeprecationWarning once::PendingDeprecationWarning