From 768d563fbab5f34cfb51da92f1a2cca139906179 Mon Sep 17 00:00:00 2001 From: Alexander Kukushkin Date: Fri, 7 Jul 2023 11:27:59 +0200 Subject: [PATCH] Check py files in features with flake8 (#2737) They are correctly formatted and there is no reason not to enforce it. --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 8b14fed9..d61eab6e 100644 --- a/setup.py +++ b/setup.py @@ -88,7 +88,7 @@ class Flake8(_Command): yield package_directory def targets(self): - return [package for package in self.package_files()] + ['tests', 'setup.py'] + return [package for package in self.package_files()] + ['tests', 'features', 'setup.py'] def run(self): from flake8.main.cli import main