diff lib/export_to_influxdb/tasks.py @ 1349:77f759551fe5

export_to_influxdb to new package Ignore-this: 573ebd40dcc63350bce2bf573f8908c1 darcs-hash:12c99cba3724d1a77a723def79bd54b193d831e2
author drewp <drewp@bigasterisk.com>
date Thu, 25 Apr 2019 23:12:39 -0700
parents
children
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/lib/export_to_influxdb/tasks.py	Thu Apr 25 23:12:39 2019 -0700
@@ -0,0 +1,9 @@
+from invoke import task
+
+import sys
+sys.path.append('/my/proj/release')
+from release import local_release
+
+@task
+def release(ctx):
+    local_release(ctx)