From 93b1c60b0be46e600bb0826359497e0bc78d6c4f Mon Sep 17 00:00:00 2001 From: Scott Idler Date: Thu, 26 Sep 2019 15:28:56 -0700 Subject: [PATCH] removed task draw and doit-graph; added awscli and docker-compose --- automation_requirements.txt | 2 +- dodo.py | 8 -------- 2 files changed, 1 insertion(+), 9 deletions(-) diff --git a/automation_requirements.txt b/automation_requirements.txt index b22ce0f..302bd72 100644 --- a/automation_requirements.txt +++ b/automation_requirements.txt @@ -7,4 +7,4 @@ tox==3.13.2 black==19.3b0 ruamel.yaml==0.15.97 locustio==0.11.0 -pyparsing==2.4.0 \ No newline at end of file +pyparsing==2.4.0 diff --git a/dodo.py b/dodo.py index a9031c3..6d625cd 100644 --- a/dodo.py +++ b/dodo.py @@ -780,11 +780,3 @@ def task_tidy(): 'find . | grep -E "(__pycache__|\.pyc$)" | xargs rm -rf', ], } - -def task_draw(): - """generate image from a dot file""" - return { - 'file_dep': ['tasks.dot'], - 'targets': ['tasks.png'], - 'actions': ['dot -Tpng %(dependencies)s -o %(targets)s'], - }