Skip to content

Commit 9040225

Browse files
committed
enable local run
1 parent 41b8c61 commit 9040225

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

tasks.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
"""Tasks for use with Invoke."""
22

3+
import os
34
from invoke import Collection, Exit
45
from invoke import task as invoke_task
56

@@ -34,7 +35,7 @@ def is_truthy(arg):
3435
"circuit_maintenance_parser": {
3536
"project_name": "circuit_maintenance_parser",
3637
"python_ver": "3.9",
37-
"local": False,
38+
"local": is_truthy(os.getenv("INVOKE_PARSER_LOCAL", False)),
3839
"image_name": "circuit_maintenance_parser",
3940
"image_ver": "latest",
4041
"pwd": ".",

0 commit comments

Comments
 (0)