[Previous command outputs are truncated. Showing the last 10989 lines of the output below.]
{%- if caller is undefined -%}
                    {{ value }}
                {%- else -%}
                    {{ caller(value, *varargs) }}
                {%- endif -%}</p>
          {%- endif %}
        {%- endmacro %}


        {% macro link_detail(icon, value, href) -%}
          {% call(value, href) detail(icon, value, href) -%}
            <a href="{{ href }}">{{ value }}</a>
          {%- endcall %}
        {%- endmacro %}
        """
        )

>       assert t.module.link_detail("circle", "Index", "/") == (
            '<p><span class="fa fa-fw fa-circle"></span><a href="/">Index</a></p>'
        )
E       AttributeError: 'NoneType' object has no attribute 'link_detail'

tests/test_regression.py:455: AttributeError
_____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ TestBug.test_variable_reuse ______________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________

self = <test_regression.TestBug object at 0x7fe71f051de0>, env = <jinja2.environment.Environment object at 0x7fe71e84b1c0>

    def test_variable_reuse(self, env):
        t = env.from_string("{% for x in x.y %}{{ x }}{% endfor %}")
>       assert t.render(x={"y": [0, 1, 2]}) == "012"

tests/test_regression.py:461:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
src/jinja2/environment.py:999: in _tmpl_render
    def _tmpl_render(self,*args,**kwargs): return self.environment._render_source(self.source,{**self.globals,**dict(*args,**kwargs)},self.name)
src/jinja2/environment.py:994: in _render_source
    out=self._render_tokens(self._tmpl_tokens(source),0,dict(vars or {}))[0]
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

self = <jinja2.environment.Environment object at 0x7fe71e84b1c0>, source = '{% for x in x.y %}{{ x }}{% endfor %}'

    def _tmpl_tokens(self, source):
>       pat=re.compile(f'({re.escape(self.variable_start_string)}-?.*?-?{re.escape(self.variable_end_string)}|{re.escape(self.block_start_string)}-?.*?-?{re.escape(self.block_end_string)}|{re.escape(self.comment_start_string)}.*?{re.escape(self.comment_end_string)})',re.S)
E       NameError: name 're' is not defined

src/jinja2/environment.py:935: NameError
______________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ TestBug.test_double_caller ______________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________

self = <test_regression.TestBug object at 0x7fe71f052110>, env = <jinja2.environment.Environment object at 0x7fe71e7ec190>

    def test_double_caller(self, env):
        t = env.from_string(
            "{% macro x(caller=none) %}[{% if caller %}"
            "{{ caller() }}{% endif %}]{% endmacro %}"
            "{{ x() }}{% call x() %}aha!{% endcall %}"
        )
>       assert t.render() == "[][aha!]"

tests/test_regression.py:475:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
src/jinja2/environment.py:999: in _tmpl_render
    def _tmpl_render(self,*args,**kwargs): return self.environment._render_source(self.source,{**self.globals,**dict(*args,**kwargs)},self.name)
src/jinja2/environment.py:994: in _render_source
    out=self._render_tokens(self._tmpl_tokens(source),0,dict(vars or {}))[0]
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

self = <jinja2.environment.Environment object at 0x7fe71e7ec190>, source = '{% macro x(caller=none) %}[{% if caller %}{{ caller() }}{% endif %}]{% endmacro %}{{ x() }}{% call x() %}aha!{% endcall %}'

    def _tmpl_tokens(self, source):
>       pat=re.compile(f'({re.escape(self.variable_start_string)}-?.*?-?{re.escape(self.variable_end_string)}|{re.escape(self.block_start_string)}-?.*?-?{re.escape(self.block_end_string)}|{re.escape(self.comment_start_string)}.*?{re.escape(self.comment_end_string)})',re.S)
E       NameError: name 're' is not defined

src/jinja2/environment.py:935: NameError
________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ TestBug.test_double_caller_no_default _________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________

self = <test_regression.TestBug object at 0x7fe71f052440>, env = <jinja2.environment.Environment object at 0x7fe71e8cabc0>

    def test_double_caller_no_default(self, env):
>       with pytest.raises(TemplateAssertionError) as exc_info:
E       Failed: DID NOT RAISE <class 'jinja2.exceptions.TemplateAssertionError'>

tests/test_regression.py:478: Failed
______________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ TestBug.test_macro_blocks _______________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________

self = <test_regression.TestBug object at 0x7fe71f052770>, env = <jinja2.environment.Environment object at 0x7fe71e8f52a0>

    def test_macro_blocks(self, env):
        t = env.from_string(
            "{% macro x() %}{% block foo %}x{% endblock %}{% endmacro %}{{ x() }}"
        )
>       assert t.render() == "x"

tests/test_regression.py:501:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
src/jinja2/environment.py:999: in _tmpl_render
    def _tmpl_render(self,*args,**kwargs): return self.environment._render_source(self.source,{**self.globals,**dict(*args,**kwargs)},self.name)
src/jinja2/environment.py:994: in _render_source
    out=self._render_tokens(self._tmpl_tokens(source),0,dict(vars or {}))[0]
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

self = <jinja2.environment.Environment object at 0x7fe71e8f52a0>, source = '{% macro x() %}{% block foo %}x{% endblock %}{% endmacro %}{{ x() }}'

    def _tmpl_tokens(self, source):
>       pat=re.compile(f'({re.escape(self.variable_start_string)}-?.*?-?{re.escape(self.variable_end_string)}|{re.escape(self.block_start_string)}-?.*?-?{re.escape(self.block_end_string)}|{re.escape(self.comment_start_string)}.*?{re.escape(self.comment_end_string)})',re.S)
E       NameError: name 're' is not defined

src/jinja2/environment.py:935: NameError
_________________________________________________________________________________________________________________________________<response clipped><NOTE>Due to the max output limit, only part of the full response has been shown to you.</NOTE>
FAILED tests/test_regression.py::test_unicode_whitespace[\x0c] - NameError: name 're' is not defined
FAILED tests/test_regression.py::test_unicode_whitespace[\x85] - NameError: name 're' is not defined
FAILED tests/test_runtime.py::test_loop_idx - NameError: name 're' is not defined
FAILED tests/test_runtime.py::test_loop_idx0 - NameError: name 're' is not defined
FAILED tests/test_runtime.py::test_iterator_not_advanced_early - NameError: name 're' is not defined
FAILED tests/test_runtime.py::test_mock_not_pass_arg_marker - NameError: name 're' is not defined
FAILED tests/test_security.py::TestSandbox::test_unsafe - NameError: name 're' is not defined
FAILED tests/test_security.py::TestSandbox::test_immutable_environment - NameError: name 're' is not defined
FAILED tests/test_security.py::TestSandbox::test_restricted - Failed: DID NOT RAISE <class 'jinja2.exceptions.TemplateSyntaxError'>
FAILED tests/test_security.py::TestSandbox::test_template_data - NameError: name 're' is not defined
FAILED tests/test_security.py::TestSandbox::test_attr_filter - NameError: name 're' is not defined
FAILED tests/test_security.py::TestSandbox::test_binary_operator_intercepting - NameError: name 're' is not defined
FAILED tests/test_security.py::TestSandbox::test_unary_operator_intercepting - NameError: name 're' is not defined
FAILED tests/test_security.py::TestStringFormat::test_basic_format_safety - NameError: name 're' is not defined
FAILED tests/test_security.py::TestStringFormat::test_basic_format_all_okay - NameError: name 're' is not defined
FAILED tests/test_security.py::TestStringFormat::test_safe_format_safety - NameError: name 're' is not defined
FAILED tests/test_security.py::TestStringFormat::test_safe_format_all_okay - NameError: name 're' is not defined
FAILED tests/test_security.py::TestStringFormat::test_empty_braces_format - NameError: name 're' is not defined
FAILED tests/test_security.py::TestStringFormatMap::test_basic_format_safety - NameError: name 're' is not defined
FAILED tests/test_security.py::TestStringFormatMap::test_basic_format_all_okay - NameError: name 're' is not defined
FAILED tests/test_security.py::TestStringFormatMap::test_safe_format_all_okay - NameError: name 're' is not defined
FAILED tests/test_tests.py::TestTestsCase::test_defined - NameError: name 're' is not defined
FAILED tests/test_tests.py::TestTestsCase::test_even - NameError: name 're' is not defined
FAILED tests/test_tests.py::TestTestsCase::test_odd - NameError: name 're' is not defined
FAILED tests/test_tests.py::TestTestsCase::test_lower - NameError: name 're' is not defined
FAILED tests/test_tests.py::TestTestsCase::test_types[none is none-True] - NameError: name 're' is not defined
FAILED tests/test_tests.py::TestTestsCase::test_types[false is none-False] - NameError: name 're' is not defined
FAILED tests/test_tests.py::TestTestsCase::test_types[true is none-False] - NameError: name 're' is not defined
FAILED tests/test_tests.py::TestTestsCase::test_types[42 is none-False] - NameError: name 're' is not defined
FAILED tests/test_tests.py::TestTestsCase::test_types[none is true-False] - NameError: name 're' is not defined
FAILED tests/test_tests.py::TestTestsCase::test_types[false is true-False] - NameError: name 're' is not defined
FAILED tests/test_tests.py::TestTestsCase::test_types[true is true-True] - NameError: name 're' is not defined
FAILED tests/test_tests.py::TestTestsCase::test_types[0 is true-False] - NameError: name 're' is not defined
FAILED tests/test_tests.py::TestTestsCase::test_types[1 is true-False] - NameError: name 're' is not defined
FAILED tests/test_tests.py::TestTestsCase::test_types[42 is true-False] - NameError: name 're' is not defined
FAILED tests/test_tests.py::TestTestsCase::test_types[none is false-False] - NameError: name 're' is not defined
FAILED tests/test_tests.py::TestTestsCase::test_types[false is false-True] - NameError: name 're' is not defined
FAILED tests/test_tests.py::TestTestsCase::test_types[true is false-False] - NameError: name 're' is not defined
FAILED tests/test_tests.py::TestTestsCase::test_types[0 is false-False] - NameError: name 're' is not defined
FAILED tests/test_tests.py::TestTestsCase::test_types[1 is false-False] - NameError: name 're' is not defined
FAILED tests/test_tests.py::TestTestsCase::test_types[42 is false-False] - NameError: name 're' is not defined
FAILED tests/test_tests.py::TestTestsCase::test_types[none is boolean-False] - NameError: name 're' is not defined
FAILED tests/test_tests.py::TestTestsCase::test_types[false is boolean-True] - NameError: name 're' is not defined
FAILED tests/test_tests.py::TestTestsCase::test_types[true is boolean-True] - NameError: name 're' is not defined
FAILED tests/test_tests.py::TestTestsCase::test_types[0 is boolean-False] - NameError: name 're' is not defined
FAILED tests/test_tests.py::TestTestsCase::test_types[1 is boolean-False] - NameError: name 're' is not defined
FAILED tests/test_tests.py::TestTestsCase::test_types[42 is boolean-False] - NameError: name 're' is not defined
FAILED tests/test_tests.py::TestTestsCase::test_types[0.0 is boolean-False] - NameError: name 're' is not defined
FAILED tests/test_tests.py::TestTestsCase::test_types[1.0 is boolean-False] - NameError: name 're' is not defined
FAILED tests/test_tests.py::TestTestsCase::test_types[3.14159 is boolean-False] - NameError: name 're' is not defined
FAILED tests/test_tests.py::TestTestsCase::test_types[none is integer-False] - NameError: name 're' is not defined
FAILED tests/test_tests.py::TestTestsCase::test_types[false is integer-False] - NameError: name 're' is not defined
FAILED tests/test_tests.py::TestTestsCase::test_types[true is integer-False] - NameError: name 're' is not defined
FAILED tests/test_tests.py::TestTestsCase::test_types[42 is integer-True] - NameError: name 're' is not defined
FAILED tests/test_tests.py::TestTestsCase::test_types[3.14159 is integer-False] - NameError: name 're' is not defined
FAILED tests/test_tests.py::TestTestsCase::test_types[(10 ** 100) is integer-True] - NameError: name 're' is not defined
FAILED tests/test_tests.py::TestTestsCase::test_types[none is float-False] - NameError: name 're' is not defined
FAILED tests/test_tests.py::TestTestsCase::test_types[false is float-False] - NameError: name 're' is not defined
FAILED tests/test_tests.py::TestTestsCase::test_types[true is float-False] - NameError: name 're' is not defined
FAILED tests/test_tests.py::TestTestsCase::test_types[42 is float-False] - NameError: name 're' is not defined
FAILED tests/test_tests.py::TestTestsCase::test_types[4.2 is float-True] - NameError: name 're' is not defined
FAILED tests/test_tests.py::TestTestsCase::test_types[(10 ** 100) is float-False] - NameError: name 're' is not defined
FAILED tests/test_tests.py::TestTestsCase::test_types[none is number-False] - NameError: name 're' is not defined
FAILED tests/test_tests.py::TestTestsCase::test_types[false is number-True] - NameError: name 're' is not defined
FAILED tests/test_tests.py::TestTestsCase::test_types[true is number-True] - NameError: name 're' is not defined
FAILED tests/test_tests.py::TestTestsCase::test_types[42 is number-True] - NameError: name 're' is not defined
FAILED tests/test_tests.py::TestTestsCase::test_types[3.14159 is number-True] - NameError: name 're' is not defined
FAILED tests/test_tests.py::TestTestsCase::test_types[complex is number-True] - NameError: name 're' is not defined
FAILED tests/test_tests.py::TestTestsCase::test_types[(10 ** 100) is number-True] - NameError: name 're' is not defined
FAILED tests/test_tests.py::TestTestsCase::test_types[none is string-False] - NameError: name 're' is not defined
FAILED tests/test_tests.py::TestTestsCase::test_types[false is string-False] - NameError: name 're' is not defined
FAILED tests/test_tests.py::TestTestsCase::test_types[true is string-False] - NameError: name 're' is not defined
FAILED tests/test_tests.py::TestTestsCase::test_types[42 is string-False] - NameError: name 're' is not defined
FAILED tests/test_tests.py::TestTestsCase::test_types["foo" is string-True] - NameError: name 're' is not defined
FAILED tests/test_tests.py::TestTestsCase::test_types[none is sequence-False] - NameError: name 're' is not defined
FAILED tests/test_tests.py::TestTestsCase::test_types[false is sequence-False] - NameError: name 're' is not defined
FAILED tests/test_tests.py::TestTestsCase::test_types[42 is sequence-False] - NameError: name 're' is not defined
FAILED tests/test_tests.py::TestTestsCase::test_types["foo" is sequence-True] - NameError: name 're' is not defined
FAILED tests/test_tests.py::TestTestsCase::test_types[[] is sequence-True] - NameError: name 're' is not defined
FAILED tests/test_tests.py::TestTestsCase::test_types[[1, 2, 3] is sequence-True] - NameError: name 're' is not defined
FAILED tests/test_tests.py::TestTestsCase::test_types[{} is sequence-True] - NameError: name 're' is not defined
FAILED tests/test_tests.py::TestTestsCase::test_types[none is mapping-False] - NameError: name 're' is not defined
FAILED tests/test_tests.py::TestTestsCase::test_types[false is mapping-False] - NameError: name 're' is not defined
FAILED tests/test_tests.py::TestTestsCase::test_types[42 is mapping-False] - NameError: name 're' is not defined
FAILED tests/test_tests.py::TestTestsCase::test_types["foo" is mapping-False] - NameError: name 're' is not defined
FAILED tests/test_tests.py::TestTestsCase::test_types[[] is mapping-False] - NameError: name 're' is not defined
FAILED tests/test_tests.py::TestTestsCase::test_types[{} is mapping-True] - NameError: name 're' is not defined
FAILED tests/test_tests.py::TestTestsCase::test_types[mydict is mapping-True] - NameError: name 're' is not defined
FAILED tests/test_tests.py::TestTestsCase::test_types[none is iterable-False] - NameError: name 're' is not defined
FAILED tests/test_tests.py::TestTestsCase::test_types[false is iterable-False] - NameError: name 're' is not defined
FAILED tests/test_tests.py::TestTestsCase::test_types[42 is iterable-False] - NameError: name 're' is not defined
FAILED tests/test_tests.py::TestTestsCase::test_types["foo" is iterable-True] - NameError: name 're' is not defined
FAILED tests/test_tests.py::TestTestsCase::test_types[[] is iterable-True] - NameError: name 're' is not defined
FAILED tests/test_tests.py::TestTestsCase::test_types[{} is iterable-True] - NameError: name 're' is not defined
FAILED tests/test_tests.py::TestTestsCase::test_types[range(5) is iterable-True] - NameError: name 're' is not defined
FAILED tests/test_tests.py::TestTestsCase::test_types[none is callable-False] - NameError: name 're' is not defined
FAILED tests/test_tests.py::TestTestsCase::test_types[false is callable-False] - NameError: name 're' is not defined
FAILED tests/test_tests.py::TestTestsCase::test_types[42 is callable-False] - NameError: name 're' is not defined
FAILED tests/test_tests.py::TestTestsCase::test_types["foo" is callable-False] - NameError: name 're' is not defined
FAILED tests/test_tests.py::TestTestsCase::test_types[[] is callable-False] - NameError: name 're' is not defined
FAILED tests/test_tests.py::TestTestsCase::test_types[{} is callable-False] - NameError: name 're' is not defined
FAILED tests/test_tests.py::TestTestsCase::test_types[range is callable-True] - NameError: name 're' is not defined
FAILED tests/test_tests.py::TestTestsCase::test_upper - NameError: name 're' is not defined
FAILED tests/test_tests.py::TestTestsCase::test_equalto - NameError: name 're' is not defined
FAILED tests/test_tests.py::TestTestsCase::test_compare_aliases[eq 2-True] - NameError: name 're' is not defined
FAILED tests/test_tests.py::TestTestsCase::test_compare_aliases[eq 3-False] - NameError: name 're' is not defined
FAILED tests/test_tests.py::TestTestsCase::test_compare_aliases[ne 3-True] - NameError: name 're' is not defined
FAILED tests/test_tests.py::TestTestsCase::test_compare_aliases[ne 2-False] - NameError: name 're' is not defined
FAILED tests/test_tests.py::TestTestsCase::test_compare_aliases[lt 3-True] - NameError: name 're' is not defined
FAILED tests/test_tests.py::TestTestsCase::test_compare_aliases[lt 2-False] - NameError: name 're' is not defined
FAILED tests/test_tests.py::TestTestsCase::test_compare_aliases[le 2-True] - NameError: name 're' is not defined
FAILED tests/test_tests.py::TestTestsCase::test_compare_aliases[le 1-False] - NameError: name 're' is not defined
FAILED tests/test_tests.py::TestTestsCase::test_compare_aliases[gt 1-True] - NameError: name 're' is not defined
FAILED tests/test_tests.py::TestTestsCase::test_compare_aliases[gt 2-False] - NameError: name 're' is not defined
FAILED tests/test_tests.py::TestTestsCase::test_compare_aliases[ge 2-True] - NameError: name 're' is not defined
FAILED tests/test_tests.py::TestTestsCase::test_compare_aliases[ge 3-False] - NameError: name 're' is not defined
FAILED tests/test_tests.py::TestTestsCase::test_sameas - NameError: name 're' is not defined
FAILED tests/test_tests.py::TestTestsCase::test_no_paren_for_arg1 - NameError: name 're' is not defined
FAILED tests/test_tests.py::TestTestsCase::test_escaped - NameError: name 're' is not defined
FAILED tests/test_tests.py::TestTestsCase::test_greaterthan - NameError: name 're' is not defined
FAILED tests/test_tests.py::TestTestsCase::test_lessthan - NameError: name 're' is not defined
FAILED tests/test_tests.py::TestTestsCase::test_multiple_tests - NameError: name 're' is not defined
FAILED tests/test_tests.py::TestTestsCase::test_in - NameError: name 're' is not defined
FAILED tests/test_tests.py::test_name_undefined - Failed: DID NOT RAISE <class 'jinja2.exceptions.TemplateAssertionError'>
FAILED tests/test_tests.py::test_name_undefined_in_if - NameError: name 're' is not defined
FAILED tests/test_tests.py::test_is_filter - AttributeError: 'str' object has no attribute 'filters'
FAILED tests/test_tests.py::test_is_test - AttributeError: 'str' object has no attribute 'tests'
FAILED tests/test_utils.py::TestLRUCache::test_simple - AssertionError: assert ['c', 'a', 'd'] == ['d', 'a', 'c']
FAILED tests/test_utils.py::TestLRUCache::test_values - assert [1, 2] == [2, 1]
FAILED tests/test_utils.py::TestLRUCache::test_copy[copy0] - AssertionError: assert ['b', 'c'] == ['c', 'b']
FAILED tests/test_utils.py::TestLRUCache::test_copy[copy1] - AssertionError: assert deque(['b', 'c']) != deque(['b', 'c'])
FAILED tests/test_utils.py::TestLRUCache::test_items - AssertionError: assert [('a', 1), ('b', 2), ('c', 3)] == [('c', 3), ('b', 2), ('a', 1)]
FAILED tests/test_utils.py::TestHelpers::test_object_type_repr - AssertionError: assert 'int' == 'int object'
FAILED tests/test_utils.py::TestLoremIpsum::test_lorem_ipsum_markup - AssertionError: assert False
FAILED tests/test_utils.py::TestLoremIpsum::test_lorem_ipsum_max - AssertionError: assert 69 < (70 - 1)
801 failed, 50 passed in 22.69s
[The command completed with exit code 1.]
[Current working directory: /workspace/jinja]
[Python interpreter: /usr/bin/python]
[Command finished with exit code 1]