File: Remove-black-and-flake8-check.patch

package info (click to toggle)
repo 2.54-1
  • links: PTS, VCS
  • area: contrib
  • in suites: trixie
  • size: 1,856 kB
  • sloc: python: 20,028; sh: 99; makefile: 13
file content (16 lines) | stat: -rw-r--r-- 515 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
Description: Remove black, flake8, and isort check
Author: Roger Shimizu <rosh@debian.org>
Forwarded: not-needed

--- a/run_tests
+++ b/run_tests
@@ -106,9 +106,6 @@ def main(argv):
     checks = (
         functools.partial(run_pytest, argv),
         functools.partial(run_pytest_py38, argv),
-        run_black,
-        run_flake8,
-        run_isort,
     )
     # Run all the tests all the time to get full feedback.  Don't exit on the
     # first error as that makes it more difficult to iterate in the CQ.