Преглед на файлове

Add task for checking formatting

Getty Ritter преди 4 години
родител
ревизия
21ef5b2783
променени са 1 файла, в които са добавени 6 реда и са изтрити 0 реда
  1. 6 0
      tasks.py

+ 6 - 0
tasks.py

@@ -37,6 +37,12 @@ def fmt(c):
         print("Uncommitted change exist; skipping commit")
 
 
+@task
+def checkfmt(c):
+    """Automatically format the source code, committing it if it is safe to do so."""
+    return c.run("poetry run black --check $(find . -name '*.py')")
+
+
 @task
 def populate(c):
     """Populate the test database with fake-ish data"""