aboutsummaryrefslogtreecommitdiffstats
path: root/tox.ini
Commit message (Collapse)AuthorAgeFilesLines
* Refactored extension importing.Waylan Limberg2014-08-271-1/+1
| | | | | | | | | | | | | We now use importlib which means we no longer support Python 2.6. Also, this refactor properly imports third party extensions which reside at the root of PYTHONPATH. Previously, either `markdown.extensions.` or `mdx_` would be appended to any extension name that did not contain a dot, which required third party extensions to either be in submodules or use the old `mdx_` naming convention. This commit is also in preperation for #336. It will now be much easier to deprecate (and later remove) support for the old ways of handling extension names.
* Refactored test framework to use YAML config files rather than INI. Fixes #333.Waylan Limberg2014-08-201-0/+1
|
* tox.ini: install pytidylib from PyPIDmitry Shachnev2014-07-251-1/+1
| | | | PyTidyLib Python 3 issues have been fixed in 0.2.3 release
* Better coverage config. Now at 88% coverage.Waylan Limberg2014-07-111-1/+2
|
* Merge branch 'master' of github.com:waylan/Python-MarkdownWaylan Limberg2014-07-101-1/+1
|\
| * Add 3.4 to list of Python versions to test withDmitry Shachnev2014-06-111-1/+1
| |
* | Add Coverage (and Coveralls) support to tests.Waylan Limberg2014-07-101-1/+2
|/ | | | Looks like we need to write some more tests. Only 76% covered.
* Added PyTidyLib to tox deps and set download-cache.Waylan Limberg2013-03-141-1/+3
|
* Switched testing to tox.Waylan Limberg2013-03-011-0/+6
Also scrapped fabfile.py and replaced it with a much simpler makefile. Tox does most of the stuff that was in fabfile.py anyway. Now that everything runs in all supported python versions without using 2to3, we don't need to wait for tox to support it.