git.schokokeks.org
Repositories
Help
Report an Issue
freewvs.git
Code
Commits
Branches
Tags
Suche
Strukturansicht:
dfb643e
Branches
Tags
master
v0.1.1
v0.1.2
v0.1.3
v0.1.4
freewvs.git
tests
test_codingstyle.py
Use isort-style import sorting
Hanno Böck
commited
dfb643e
at 2023-11-25 21:47:14
test_codingstyle.py
Blame
History
Raw
import glob import subprocess import unittest class TestCodingstyle(unittest.TestCase): @staticmethod def test_codingstyle(): pyfiles = ["freewvs", "update-freewvsdb", "setup.py"] + glob.glob("tests/*.py") subprocess.run( ["pycodestyle", "--ignore=W503,E501", "--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()