Browse Source

Automatic formatting commit: 2020-04-05T17:09:32.098430

Getty Ritter 4 years ago
parent
commit
f2a9aaab40
1 changed files with 15 additions and 11 deletions
  1. 15 11
      tasks.py

+ 15 - 11
tasks.py

@@ -1,32 +1,36 @@
 from datetime import datetime
 from invoke import task
 
+
 @task
 def test(c):
-    '''Run all the provided tests'''
-    c.run('poetry run python -m pytest tests/*.py')
+    """Run all the provided tests"""
+    c.run("poetry run python -m pytest tests/*.py")
+
 
 @task
-def run(c, port=8080, host='127.0.0.1'):
-    '''Run a debug server locally'''
+def run(c, port=8080, host="127.0.0.1"):
+    """Run a debug server locally"""
     c.run(
-        f'poetry run python -m flask run -p {port} -h {host}',
-        env={'FLASK_APP': 'lc/main.py'},
+        f"poetry run python -m flask run -p {port} -h {host}",
+        env={"FLASK_APP": "lc/main.py"},
     )
 
+
 @task
 def install(c):
-    '''Install the listed dependencies into a virtualenv'''
-    c.run('poetry install')
+    """Install the listed dependencies into a virtualenv"""
+    c.run("poetry install")
+
 
 @task
 def fmt(c):
-    status = c.run('git status --porcelain', hide='stdout')
-    is_clean = status.stdout.strip() == ''
+    status = c.run("git status --porcelain", hide="stdout")
+    is_clean = status.stdout.strip() == ""
     c.run("poetry run black $(find . -name '*.py')")
 
     if is_clean:
         date = datetime.now().isoformat()
         c.run(f"git commit -a -m 'Automatic formatting commit: {date}'")
     else:
-        print('Uncommitted change exist; skipping commit')
+        print("Uncommitted change exist; skipping commit")