TeamspeakStats/tests/test_style.py

12 lines
306 B
Python
Raw Normal View History

2015-07-17 09:36:25 -04:00
import pep8
from glob import glob
2015-07-17 09:36:25 -04:00
def test_pep8_comformance():
''' Test that the code conforms to PEP8 '''
pep8style = pep8.StyleGuide(config_file='.pep8')
files = glob('tests/*.py')
files.append('tsstats.py')
result = pep8style.check_files(files)
2015-07-17 09:36:25 -04:00
assert result.total_errors == 0