Examples on.
(cookies)
| 71 | |
| 72 | @pytest.fixture |
| 73 | def bake_examples_compiled(cookies): |
| 74 | """ |
| 75 | Examples on. |
| 76 | """ |
| 77 | result = cookies.bake(extra_context={"include_example_code": "y", |
| 78 | "use_compiled_extensions": "y", |
| 79 | "author_name": "test"}) |
| 80 | return _handle_cookiecutter_errors(result) |
| 81 | |
| 82 | |
| 83 | @pytest.fixture |
nothing calls this directly
no test coverage detected