From fcce4b4bbf85bbaeffd594d2403b42e7d30d6e2c Mon Sep 17 00:00:00 2001 From: Ghislain MARY Date: Thu, 11 Sep 2014 15:27:45 +0200 Subject: [PATCH] Add README.txt file for Python unit tests. --- tools/python/unittests/README.txt | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 tools/python/unittests/README.txt diff --git a/tools/python/unittests/README.txt b/tools/python/unittests/README.txt new file mode 100644 index 000000000..f0f57a2b3 --- /dev/null +++ b/tools/python/unittests/README.txt @@ -0,0 +1,14 @@ +*************************************** +** Linphone Python module unit tests ** +*************************************** + +To run these unit tests, you need to have installed the Python module for Linphone +and to have install the nose unit tests framework. +Then use this command to run the tests: + nosetests -v --nologcapture + +The logs from the tests are put in some .log files. + +A single test file can be run by specifying it at the command line. For example, +to run only the message unit tests use: + nosetests -v --nologcapture test_message.py