From 00458d7b43648cd521d90ac2efb46ea6b7efa848 Mon Sep 17 00:00:00 2001 From: "Jason R. Coombs" Date: Sun, 8 Jun 2014 10:30:27 +0100 Subject: [PATCH] Run tests with pytest-runner. --- setup.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/setup.py b/setup.py index 2478fc1..8a88889 100644 --- a/setup.py +++ b/setup.py @@ -17,6 +17,10 @@ setup_params = dict( zip_safe=False, setup_requires=[ 'hgtools', + 'pytest-runner', + ], + tests_require=[ + 'pytest', ], ) if __name__ == '__main__':