mirror of
https://github.com/Thor77/TeamspeakStats.git
synced 2025-04-04 12:44:40 -04:00
remove redundant pep8-style-test
This commit is contained in:
parent
7b53fc85de
commit
9acf33dea8
1 changed files with 2 additions and 14 deletions
|
@ -1,19 +1,7 @@
|
|||
from glob import glob
|
||||
|
||||
import pep8
|
||||
from pyflakes.api import checkPath
|
||||
|
||||
|
||||
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
|
||||
import pyflakes.api
|
||||
|
||||
|
||||
def test_pyflakes():
|
||||
''' Test that at least tsstats.py conforms to PyFlakes '''
|
||||
result = checkPath('tsstats.py')
|
||||
result = pyflakes.api.checkPath('**/*.py')
|
||||
assert result == 0
|
||||
|
|
Loading…
Add table
Reference in a new issue