view lib/export_to_influxdb/tasks.py @ 653:281be4651a2f

graph path now has 'store' in it Ignore-this: f20acfa66fa56e5b4e076e76cad140f6
author drewp@bigasterisk.com
date Wed, 25 Sep 2019 17:29:47 -0700
parents 56ea46077ff5
children
line wrap: on
line source

from invoke import task

import sys
sys.path.append('/my/proj/release')
from release import local_release

@task
def release(ctx):
    local_release(ctx)