From 99e1b302e597004119d7cd86452f58036bbb441f Mon Sep 17 00:00:00 2001 From: Jan-Wijbrand Kolman Date: Mon, 16 May 2011 08:08:37 +0000 Subject: [PATCH] fix an encoding issue with reading the directive.txt doctest --- src/martian/tests/test_all.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/martian/tests/test_all.py b/src/martian/tests/test_all.py index fe34f9a..3ca0875 100644 --- a/src/martian/tests/test_all.py +++ b/src/martian/tests/test_all.py @@ -18,7 +18,8 @@ def test_suite(): doctest.DocFileSuite('directive.txt', package='martian', globs=globs, - optionflags=optionflags), + optionflags=optionflags, + encoding='utf-8'), doctest.DocFileSuite('core.txt', package='martian', globs=globs,