Add a section about running tests in the README.rst and recommend
using "python setup.py test". Fix the test_suite parameter in setup.py
accordingly.
<jenkinsapi.build.Build test_jenkinsapi #77>
...
+Testing
+-------
+
+If you have installed the test dependencies on your system already, you can run
+the testsuite with the following command:
+
+.. code-block:: bash
+
+ python setup.py test
+
+Otherwise using a virtualenv is recommended. Setuptools will automatically fetch
+missing test dependencies:
+
+.. code-block:: bash
+
+ virtualenv
+ source .venv/bin/active
+ (venv) python setup.py test
+
+
+
Project Contributors
--------------------
zip_safe=True,
include_package_data=False,
install_requires=['requests>=1.2.3', 'pytz>=2013b'],
- test_suite='jenkinsapi_tests',
+ test_suite='nose.collector',
tests_require=['mock', 'nose', 'coverage'],
entry_points=GLOBAL_ENTRY_POINTS,
url=PROJECT_URL,