Added utils path to pep8 checks

This commit is contained in:
2024-01-25 00:08:25 +00:00
parent 0358670071
commit b9dc10c99b
3 changed files with 7 additions and 3 deletions

View File

@ -6,6 +6,6 @@ import pycodestyle
def test_pep8_conformance():
"""Test that we conform to PEP8."""
pep8style = pycodestyle.StyleGuide()
dirs = ["./controllers", "./models", "./scripts", "./tests"]
dirs = ["./controllers", "./models", "./scripts", "./tests", "./utils"]
result = pep8style.check_files(dirs)
assert result.total_errors == 0