From a1cf3080dc3b65bdc57d100c9978c278070d2043 Mon Sep 17 00:00:00 2001 From: Riccardo Murri Date: Fri, 12 Jan 2018 23:14:28 +0100 Subject: [PATCH] Add `pytest-colordots` as a required test module. Improves legibility of non-verbose test results. --- setup.py | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index b40f3091..16f73680 100755 --- a/setup.py +++ b/setup.py @@ -236,9 +236,13 @@ def run_tests(self): ], }, - # Apparently, this list is read from right to left... + # Apparently, this list is read from bottom to top... tests_require=[ - 'tox', 'pytest-catchlog', 'pytest', 'mock', + 'tox', + 'pytest-colordots', + 'pytest-catchlog', + 'pytest', + 'mock', ], cmdclass={'test': Tox},