From 7a5acefd3fc92a88c3a8bed41934e35e0dc4612f Mon Sep 17 00:00:00 2001 From: Sam McHardy Date: Fri, 25 Aug 2017 14:48:41 +0930 Subject: [PATCH] Attempt to ignore pep8 line to long error --- setup.cfg | 3 +++ tox.ini | 5 ++++- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/setup.cfg b/setup.cfg index 2a9acf13d..e36f07383 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,2 +1,5 @@ [bdist_wheel] universal = 1 + +[pep8] +ignore = E501 diff --git a/tox.ini b/tox.ini index 1bd277da9..1d28cfb11 100644 --- a/tox.ini +++ b/tox.ini @@ -5,7 +5,7 @@ envlist = py26, py27, py32, py33, py34, py35, py36 deps = -rtest-requirements.txt -rrequirements.txt -commands = py.test -v tests/ +commands = py.test -v tests/ --doctest-modules --pep8 binance --cov binance --cov-report term-missing passenv = TRAVIS TRAVIS_BRANCH @@ -30,3 +30,6 @@ exclude = .tox, build, dist + +[pep8] +ignore = E501