aboutsummaryrefslogtreecommitdiffstats
path: root/fabfile.py
diff options
context:
space:
mode:
authorWaylan Limberg <waylan@gmail.com>2011-08-02 09:23:49 -0400
committerWaylan Limberg <waylan@gmail.com>2011-08-02 09:23:49 -0400
commit7af553173629d8d8e36e71fbf2753dc8d6fe11d3 (patch)
treeb9f2460776fe98511f3c713b5ae5fd5b3899bfaf /fabfile.py
parent447e238186f30f3480afadb68aaf5efa4f6dfc9e (diff)
downloadmarkdown-7af553173629d8d8e36e71fbf2753dc8d6fe11d3.tar.gz
markdown-7af553173629d8d8e36e71fbf2753dc8d6fe11d3.tar.bz2
markdown-7af553173629d8d8e36e71fbf2753dc8d6fe11d3.zip
Added doctests to fabfile and edited them to pass in all supported versions of python. Note: one test (meta) is still failing on Python 3 due to unicode strings.
Diffstat (limited to 'fabfile.py')
-rw-r--r--fabfile.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/fabfile.py b/fabfile.py
index cc5702a..b2016c0 100644
--- a/fabfile.py
+++ b/fabfile.py
@@ -49,6 +49,7 @@ def build_tests(version=_pyversion[:3]):
local('mkdir build/test.%s/tests' % version)
local('cp -r tests/* build/test.%s/tests' % version)
local('cp run-tests.py build/test.%s/run-tests.py' % version)
+ local('cp setup.cfg build/test.%s/setup.cfg' % version)
if version.startswith('3'):
# Do 2to3 conversion
local('2to3-%s -w -d build/test.%s/markdown' % (version, version))