diff --git a/test.py b/test.py index b4284fcd..95b48501 100644 --- a/test.py +++ b/test.py @@ -286,11 +286,4 @@ def a_following_valid_function(x): """ - -def a_raw_unicode_docstring(): - ur"""Check raw unicode docstrings. - - ê is \u00ea - """ - expect('test.py', 'D100: Missing docstring in public module') diff --git a/tox.ini b/tox.ini index 4f38a792..a4841091 100644 --- a/tox.ini +++ b/tox.ini @@ -4,11 +4,12 @@ # install tox" and then run "tox" from this directory. [tox] -envlist = py26, py27, py32, py33, py34, pypy, pypy3 +envlist = py27, py34 +# py26, py27, py32, py33, py34, pypy, pypy3 [testenv] # Make sure reading the UTF-8 from test.py works regardless of the locale used. -setenv = LANG=C LC_ALL=C +# setenv = LANG=C LC_ALL=C commands = py.test --pep8 --clearcache deps = pytest pytest-pep8