annotate lib/standardservice/tasks.py @ 1634:ba59cfc3c747

hack math:sum in there. Test suite is passing except some slow performers
author drewp@bigasterisk.com
date Sun, 12 Sep 2021 23:48:43 -0700
parents 77181261f8ce
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
523
77181261f8ce move logsetup into new standardservice pkg
drewp@bigasterisk.com
parents:
diff changeset
1 from invoke import task
77181261f8ce move logsetup into new standardservice pkg
drewp@bigasterisk.com
parents:
diff changeset
2
77181261f8ce move logsetup into new standardservice pkg
drewp@bigasterisk.com
parents:
diff changeset
3 import sys
77181261f8ce move logsetup into new standardservice pkg
drewp@bigasterisk.com
parents:
diff changeset
4 sys.path.append('/my/proj/release')
77181261f8ce move logsetup into new standardservice pkg
drewp@bigasterisk.com
parents:
diff changeset
5 from release import local_release
77181261f8ce move logsetup into new standardservice pkg
drewp@bigasterisk.com
parents:
diff changeset
6
77181261f8ce move logsetup into new standardservice pkg
drewp@bigasterisk.com
parents:
diff changeset
7 @task
77181261f8ce move logsetup into new standardservice pkg
drewp@bigasterisk.com
parents:
diff changeset
8 def release(ctx):
77181261f8ce move logsetup into new standardservice pkg
drewp@bigasterisk.com
parents:
diff changeset
9 local_release(ctx)