From 0d967d4530f9c47148fa0cd02b3be06dd6f2c953 Mon Sep 17 00:00:00 2001 From: Jonathan Beezley Date: Sun, 31 May 2015 15:27:18 -0400 Subject: [PATCH] Remove test because ur'' is a syntax error in py3 --- test.py | 7 ------- tox.ini | 5 +++-- 2 files changed, 3 insertions(+), 9 deletions(-) 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