17
17
def test_pep8_clean(self):
18
18
CURDIR = os.path.dirname(os.path.abspath(__file__))
20
19
for dirpath, dirs, files in os.walk(os.path.join(CURDIR, "..")):
22
21
if os.path.splitext(f)[1] != ".py":
28
["pep8", "--ignore={0}".format(IGNORE_PEP8 + ", E501"),
32
36
if __name__ == "__main__":