aboutsummaryrefslogtreecommitdiffstats
path: root/test-requirements.txt
Commit message (Collapse)AuthorAgeFilesLines
* Update for MkDocs 1.0.Waylan Limberg2018-08-031-1/+1
|
* Switch from nose to unittestWaylan Limberg2018-01-081-1/+0
| | | | | | | | | | | | | | | All file-based tests are now defined as unittest test cases via a metaclass which walks a directory and builds a unittest for each pair of test files. To run the tests just run `python -m unittest discover tests`. Or use tox as the tox config has been updated to run the new tests and all nose specific code has been removed. The test generator tools have been removed as well. If any changes or additions need to be made to tests, they should be implemented using the new framework rather than with the file-based tests. Eventually, only the PHP and pl tests should remain as file-based tests.
* Switch docs to MKDocs (#602)Waylan Limberg2017-12-061-1/+2
| | | | | | | | | | | | | | | | | | | | | | | | Fixes #601. Merged in 6f87b32 from the md3 branch and did a lot of cleanup. Changes include: * Removed old docs build tool, templates, etc. * Added MkDocs config file, etc. * filename.txt => filename.md * pythonhost.org/Markdown => Python-Markdown.github.io * Markdown lint and other cleanup. * Automate pages deployment in makefile with `mkdocs gh-deploy` Assumes a git remote is set up named "pages". Do git remote add pages https://github.com/Python-Markdown/Python-Markdown.github.io.git ... before running `make deploy` the first time.
* Enabled pygments based tests.Waylan Limberg2016-01-281-1/+2
| | | | | | Added pygments to test-requirements and updated codehiliting tests to only test partial output as output differs depending on Pygments version. Fixes #453
* Coverage 4.0 dropped support for Python 3.2. Until we drop Python 3.2, we ↵Waylan Limberg2015-10-261-1/+1
| | | | must stick with coverage<4.0.
* Added test-requirements.txtWaylan Limberg2015-01-101-0/+4
This should make it easier to install test deps even when not using tox.