summaryrefslogtreecommitdiff
path: root/pystache/tests/doctesting.py
diff options
context:
space:
mode:
authorChris Jerdonek <chris.jerdonek@gmail.com>2012-05-06 13:19:45 -0700
committerChris Jerdonek <chris.jerdonek@gmail.com>2012-05-06 13:19:45 -0700
commitea9f711c9074a09a9629e02d9508596e30fd65c8 (patch)
tree76aa3cd3493d397a465ef3c32178c93f26a8a2bf /pystache/tests/doctesting.py
parenta4a9413a52afe9960df41f3f71e6d3d1d0eddb32 (diff)
downloadpystache-ea9f711c9074a09a9629e02d9508596e30fd65c8.tar.gz
Renderer.render() now accepts ParsedTemplate instances.
Diffstat (limited to 'pystache/tests/doctesting.py')
-rw-r--r--pystache/tests/doctesting.py6
1 files changed, 5 insertions, 1 deletions
diff --git a/pystache/tests/doctesting.py b/pystache/tests/doctesting.py
index 469c81e..1102b78 100644
--- a/pystache/tests/doctesting.py
+++ b/pystache/tests/doctesting.py
@@ -44,7 +44,11 @@ def get_doctests(text_file_dir):
paths = [os.path.normpath(os.path.join(text_file_dir, path)) for path in TEXT_DOCTEST_PATHS]
if sys.version_info >= (3,):
- paths = _convert_paths(paths)
+ # Skip the README doctests in Python 3 for now because examples
+ # rendering to unicode do not give consistent results
+ # (e.g. 'foo' vs u'foo').
+ # paths = _convert_paths(paths)
+ paths = []
suites = []