diff options
author | Waylan Limberg <waylan@gmail.com> | 2013-03-19 12:26:51 -0300 |
---|---|---|
committer | Waylan Limberg <waylan@gmail.com> | 2013-03-19 12:26:51 -0300 |
commit | 475a71aa3808ed50bec11921dddba16705d3fce7 (patch) | |
tree | f4f55a2cdb62f3807ff6fea2446679f116a06fd1 | |
parent | 0f548dafad6a58bf6ef3b13dc9a058abf53a8a21 (diff) | |
download | markdown-475a71aa3808ed50bec11921dddba16705d3fce7.tar.gz markdown-475a71aa3808ed50bec11921dddba16705d3fce7.tar.bz2 markdown-475a71aa3808ed50bec11921dddba16705d3fce7.zip |
Added a note about tox in test suite docs.
-rw-r--r-- | docs/test_suite.txt | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/docs/test_suite.txt b/docs/test_suite.txt index e10e58b..77bec43 100644 --- a/docs/test_suite.txt +++ b/docs/test_suite.txt @@ -20,9 +20,13 @@ nose`). Any standard nosetests config options can be passed in on the command line (i.e.: verbosity level or use of a plugin like coverage). Additionally, a nicely formatted HTML report of all output is written to a -temporary file in `tmp/test-output.html`. Open the file in a browser to view +temporary file in `test-output.html`. Open the file in a browser to view the report. +A tox.ini file is also provided, so [tox] can be used to automatically create +virtual environments and run the tests on each supported Python version. See +the wiki for instructions on [setting up a testing environment] to use tox. + The test suite contains two kinds of tests: Markdown Syntax Tests and Unit Tests. @@ -128,3 +132,5 @@ writing new tests, those standards and naming conventions should be followed. [Perl]: http://daringfireball.net/projects/markdown/ [PHP]: http://michelf.com/projects/php-markdown/ [PyTidyLib]: http://countergram.com/open-source/pytidylib/ +[tox]: http://testrun.org/tox/latest/ +[setting up a testing environment]: https://github.com/waylan/Python-Markdown/wiki/Test-Environment-Setup |