Skip to content

Instantly share code, notes, and snippets.

@whytewolf

whytewolf/output Secret

Created March 3, 2017 22:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save whytewolf/555176ffac904b6a18a596b10d8eab75 to your computer and use it in GitHub Desktop.
Save whytewolf/555176ffac904b6a18a596b10d8eab75 to your computer and use it in GitHub Desktop.
{'version_number': 'v1_0'}
{# Layer together the various defaults. #}
{% set settings = {} %}
{% macro this_test(version_number) %}
{% do settings.update({'version_number': version_number}) %}
{%endmacro%}
{# Additional settings collections ommitted #}
{% set version_number = 'v1_0' %}
{% from "testing/settings.jinja" import settings,this_test with context %}
{% do this_test(version_number) %}
{{settings}}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment