We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 41b8c61 commit 9040225Copy full SHA for 9040225
1 file changed
tasks.py
@@ -1,5 +1,6 @@
1
"""Tasks for use with Invoke."""
2
3
+import os
4
from invoke import Collection, Exit
5
from invoke import task as invoke_task
6
@@ -34,7 +35,7 @@ def is_truthy(arg):
34
35
"circuit_maintenance_parser": {
36
"project_name": "circuit_maintenance_parser",
37
"python_ver": "3.9",
- "local": False,
38
+ "local": is_truthy(os.getenv("INVOKE_PARSER_LOCAL", False)),
39
"image_name": "circuit_maintenance_parser",
40
"image_ver": "latest",
41
"pwd": ".",
0 commit comments