From 02d5e0a7aeb38fc60b82d40dc1bd6e5d396a4a32 Mon Sep 17 00:00:00 2001 From: Matus Valo Date: Sun, 21 Jan 2018 14:40:49 -0800 Subject: Unittests can be run directly without installation of library Unittests are now migrated from nose to python standard unittests runner and Makefile calls tests directly from setup.py. This enables running tests without installation in system. --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'setup.py') diff --git a/setup.py b/setup.py index 0b94c10..ec00de9 100644 --- a/setup.py +++ b/setup.py @@ -211,7 +211,7 @@ setup( license='MPL', description='AMQP Client using the rabbitmq-c library.', long_description=long_description, - test_suite='nose.collector', + test_suite="tests", zip_safe=False, packages=packages, cmdclass=cmdclass, -- cgit v1.2.1