Skip to content

Commit

Permalink
Add pytest-colordots as a required test module.
Browse files Browse the repository at this point in the history
Improves legibility of non-verbose test results.
  • Loading branch information
riccardomurri committed Jan 12, 2018
1 parent 25ed126 commit a1cf308
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions setup.py
Expand Up @@ -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},

Expand Down

0 comments on commit a1cf308

Please sign in to comment.