From 9f1b63b16592d0f20b14fde8de70ba62b4ae58e0 Mon Sep 17 00:00:00 2001 From: Jacob Bom Date: Tue, 20 Jun 2017 21:49:00 +0200 Subject: [PATCH] Add module name to tests name So they fit in with the rest better --- tests/test_official.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_official.py b/tests/test_official.py index 26ad3c999..486f0d065 100644 --- a/tests/test_official.py +++ b/tests/test_official.py @@ -139,7 +139,7 @@ def test_official(): if test: def fn(): return test(h4) - fn.description = '{}({})'.format(test.__name__, h4.text) + fn.description = '{}({}) ({})'.format(test.__name__, h4.text, __name__) yield fn