mirror of
https://github.com/Thor77/TeamspeakStats.git
synced 2025-03-12 17:44:32 -04:00
11 lines
306 B
Python
11 lines
306 B
Python
import pep8
|
|
from glob import glob
|
|
|
|
|
|
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)
|
|
assert result.total_errors == 0
|