git.schokokeks.org
Repositories
Help
Report an Issue
freewvs.git
Code
Commits
Branches
Tags
Suche
Strukturansicht:
a3e985f
Branches
Tags
master
v0.1.1
v0.1.2
v0.1.3
v0.1.4
freewvs.git
tests
test_codingstyle.py
use black codingstyle
Hanno Böck
commited
a3e985f
at 2022-07-15 12:43:59
test_codingstyle.py
Blame
History
Raw
import unittest import subprocess import glob class TestCodingstyle(unittest.TestCase): @staticmethod def test_codingstyle(): pyfiles = ["freewvs", "update-freewvsdb", "setup.py"] + glob.glob("tests/*.py") subprocess.run( ["pycodestyle", "--ignore=W503", "--max-line-length=88"] + pyfiles, check=True, ) subprocess.run(["pyflakes"] + pyfiles, check=True) pylint_disable = ( "missing-docstring,invalid-name,duplicate-code," + "too-many-arguments,consider-using-with" ) subprocess.run(["pylint", f"--disable={pylint_disable}"] + pyfiles, check=True) subprocess.run(["flake8", "--select=DUO"] + pyfiles, check=True) subprocess.run(["pyupgrade", "--py311-plus"] + pyfiles, check=True) if __name__ == "__main__": unittest.main()