From 84cfab1a4c32a85ecca6e18c5c35a9689debc737 Mon Sep 17 00:00:00 2001 From: farizrahman4u Date: Wed, 25 Jan 2017 13:29:44 +0530 Subject: [PATCH] ignore line too long pep8 --- pytest.ini | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 pytest.ini diff --git a/pytest.ini b/pytest.ini new file mode 100644 index 0000000..079ed86 --- /dev/null +++ b/pytest.ini @@ -0,0 +1,20 @@ +# Configuration of py.test +[pytest] +addopts=-v + -n 2 + --durations=10 + --cov-report term-missing + --cov=keras + +# Do not run tests in the build folder +norecursedirs= build + +# PEP-8 The following are ignored: +# E501 line too long (82 > 79 characters) +# E402 module level import not at top of file - temporary measure to continue adding ros python packaged in sys.path +# E731 do not assign a lambda expression, use a def + +pep8ignore=* E501 \ + * E402 \ + * E731 \ +