Separate failing tests so they run alone

This fixes the tests so they run on Windows with Python < 3.4. Possibly related
to the issues fixed by PEP 446.
This commit is contained in:
Christian Long 2015-03-11 20:50:34 -05:00
parent e8460dfe51
commit ce58c92bf6
2 changed files with 4 additions and 0 deletions

View file

@ -9,6 +9,8 @@
tests (nosetests --with-isolation doesn't help).
In tox.ini, these tests are run separately.
See https://gitlab.com/pycqa/flake8/issues/44 for an explanation.
"""
from __future__ import with_statement

View file

@ -7,9 +7,11 @@ envlist =
usedevelop = True
deps =
mock
nose
commands =
python setup.py test -q
python setup.py flake8
nosetests flake8.tests._test_warnings
[testenv:py27-flake8]
basepython = python2.7