You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Mar 19, 2021. It is now read-only.
There are a few global values that various things look for in a recipe. For example, RUN_CONTEXT, BROKEN, etc.
We should have a single construct for all recipe metadata. I guess for now we can keep using a global variable + dict:
META= {
'disabled': 'true',
'context': { ... },
}
Eventually we might want to move this to an external file and have that be the primary place to define a recipe, but for now we can leave them in the python module.
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
There are a few global values that various things look for in a recipe. For example,
RUN_CONTEXT
,BROKEN
, etc.We should have a single construct for all recipe metadata. I guess for now we can keep using a global variable + dict:
Eventually we might want to move this to an external file and have that be the primary place to define a recipe, but for now we can leave them in the python module.
The text was updated successfully, but these errors were encountered: