├── .github └── workflows │ └── run-checks.yml ├── .gitignore ├── CONTRIBUTING.md ├── CONTRIBUTORS.md ├── LICENSE ├── Makefile ├── README.md ├── cookiecutter.json ├── docs ├── contributor-guide │ ├── documentation.md │ └── quickstart.md ├── index.md └── user-guide │ ├── publish-plugin.md │ └── quickstart.md ├── hooks ├── post_gen_project.py └── pre_gen_project.py ├── mkdocs.yml ├── pytest-{{cookiecutter.plugin_name}} ├── .github │ └── workflows │ │ └── main.yml ├── .gitignore ├── LICENSE ├── README.rst ├── docs_sources │ ├── mkdocs │ │ ├── index.md │ │ └── mkdocs.yml │ └── sphinx │ │ ├── Makefile │ │ ├── conf.py │ │ ├── index.rst │ │ └── make.bat ├── licenses │ ├── Apache-2 │ ├── BSD-3 │ ├── GPL-3 │ ├── MIT │ └── MPL-2 ├── macros │ └── rst ├── pyproject.toml ├── src │ └── pytest_{{cookiecutter.module_name}} │ │ ├── __init__.py │ │ └── plugin.py ├── tests │ ├── conftest.py │ └── test_{{cookiecutter.module_name}}.py └── tox.ini ├── tests ├── conftest.py └── test_create_template.py └── tox.ini /.github/workflows/run-checks.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/cookiecutter-pytest-plugin/HEAD/.github/workflows/run-checks.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/cookiecutter-pytest-plugin/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/cookiecutter-pytest-plugin/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /CONTRIBUTORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/cookiecutter-pytest-plugin/HEAD/CONTRIBUTORS.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/cookiecutter-pytest-plugin/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/cookiecutter-pytest-plugin/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/cookiecutter-pytest-plugin/HEAD/README.md -------------------------------------------------------------------------------- /cookiecutter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/cookiecutter-pytest-plugin/HEAD/cookiecutter.json -------------------------------------------------------------------------------- /docs/contributor-guide/documentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/cookiecutter-pytest-plugin/HEAD/docs/contributor-guide/documentation.md -------------------------------------------------------------------------------- /docs/contributor-guide/quickstart.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/cookiecutter-pytest-plugin/HEAD/docs/contributor-guide/quickstart.md -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/cookiecutter-pytest-plugin/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/user-guide/publish-plugin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/cookiecutter-pytest-plugin/HEAD/docs/user-guide/publish-plugin.md -------------------------------------------------------------------------------- /docs/user-guide/quickstart.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/cookiecutter-pytest-plugin/HEAD/docs/user-guide/quickstart.md -------------------------------------------------------------------------------- /hooks/post_gen_project.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/cookiecutter-pytest-plugin/HEAD/hooks/post_gen_project.py -------------------------------------------------------------------------------- /hooks/pre_gen_project.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/cookiecutter-pytest-plugin/HEAD/hooks/pre_gen_project.py -------------------------------------------------------------------------------- /mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/cookiecutter-pytest-plugin/HEAD/mkdocs.yml -------------------------------------------------------------------------------- /pytest-{{cookiecutter.plugin_name}}/.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/cookiecutter-pytest-plugin/HEAD/pytest-{{cookiecutter.plugin_name}}/.github/workflows/main.yml -------------------------------------------------------------------------------- /pytest-{{cookiecutter.plugin_name}}/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/cookiecutter-pytest-plugin/HEAD/pytest-{{cookiecutter.plugin_name}}/.gitignore -------------------------------------------------------------------------------- /pytest-{{cookiecutter.plugin_name}}/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/cookiecutter-pytest-plugin/HEAD/pytest-{{cookiecutter.plugin_name}}/LICENSE -------------------------------------------------------------------------------- /pytest-{{cookiecutter.plugin_name}}/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/cookiecutter-pytest-plugin/HEAD/pytest-{{cookiecutter.plugin_name}}/README.rst -------------------------------------------------------------------------------- /pytest-{{cookiecutter.plugin_name}}/docs_sources/mkdocs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/cookiecutter-pytest-plugin/HEAD/pytest-{{cookiecutter.plugin_name}}/docs_sources/mkdocs/index.md -------------------------------------------------------------------------------- /pytest-{{cookiecutter.plugin_name}}/docs_sources/mkdocs/mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/cookiecutter-pytest-plugin/HEAD/pytest-{{cookiecutter.plugin_name}}/docs_sources/mkdocs/mkdocs.yml -------------------------------------------------------------------------------- /pytest-{{cookiecutter.plugin_name}}/docs_sources/sphinx/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/cookiecutter-pytest-plugin/HEAD/pytest-{{cookiecutter.plugin_name}}/docs_sources/sphinx/Makefile -------------------------------------------------------------------------------- /pytest-{{cookiecutter.plugin_name}}/docs_sources/sphinx/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/cookiecutter-pytest-plugin/HEAD/pytest-{{cookiecutter.plugin_name}}/docs_sources/sphinx/conf.py -------------------------------------------------------------------------------- /pytest-{{cookiecutter.plugin_name}}/docs_sources/sphinx/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/cookiecutter-pytest-plugin/HEAD/pytest-{{cookiecutter.plugin_name}}/docs_sources/sphinx/index.rst -------------------------------------------------------------------------------- /pytest-{{cookiecutter.plugin_name}}/docs_sources/sphinx/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/cookiecutter-pytest-plugin/HEAD/pytest-{{cookiecutter.plugin_name}}/docs_sources/sphinx/make.bat -------------------------------------------------------------------------------- /pytest-{{cookiecutter.plugin_name}}/licenses/Apache-2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/cookiecutter-pytest-plugin/HEAD/pytest-{{cookiecutter.plugin_name}}/licenses/Apache-2 -------------------------------------------------------------------------------- /pytest-{{cookiecutter.plugin_name}}/licenses/BSD-3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/cookiecutter-pytest-plugin/HEAD/pytest-{{cookiecutter.plugin_name}}/licenses/BSD-3 -------------------------------------------------------------------------------- /pytest-{{cookiecutter.plugin_name}}/licenses/GPL-3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/cookiecutter-pytest-plugin/HEAD/pytest-{{cookiecutter.plugin_name}}/licenses/GPL-3 -------------------------------------------------------------------------------- /pytest-{{cookiecutter.plugin_name}}/licenses/MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/cookiecutter-pytest-plugin/HEAD/pytest-{{cookiecutter.plugin_name}}/licenses/MIT -------------------------------------------------------------------------------- /pytest-{{cookiecutter.plugin_name}}/licenses/MPL-2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/cookiecutter-pytest-plugin/HEAD/pytest-{{cookiecutter.plugin_name}}/licenses/MPL-2 -------------------------------------------------------------------------------- /pytest-{{cookiecutter.plugin_name}}/macros/rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/cookiecutter-pytest-plugin/HEAD/pytest-{{cookiecutter.plugin_name}}/macros/rst -------------------------------------------------------------------------------- /pytest-{{cookiecutter.plugin_name}}/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/cookiecutter-pytest-plugin/HEAD/pytest-{{cookiecutter.plugin_name}}/pyproject.toml -------------------------------------------------------------------------------- /pytest-{{cookiecutter.plugin_name}}/src/pytest_{{cookiecutter.module_name}}/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pytest-{{cookiecutter.plugin_name}}/src/pytest_{{cookiecutter.module_name}}/plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/cookiecutter-pytest-plugin/HEAD/pytest-{{cookiecutter.plugin_name}}/src/pytest_{{cookiecutter.module_name}}/plugin.py -------------------------------------------------------------------------------- /pytest-{{cookiecutter.plugin_name}}/tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/cookiecutter-pytest-plugin/HEAD/pytest-{{cookiecutter.plugin_name}}/tests/conftest.py -------------------------------------------------------------------------------- /pytest-{{cookiecutter.plugin_name}}/tests/test_{{cookiecutter.module_name}}.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/cookiecutter-pytest-plugin/HEAD/pytest-{{cookiecutter.plugin_name}}/tests/test_{{cookiecutter.module_name}}.py -------------------------------------------------------------------------------- /pytest-{{cookiecutter.plugin_name}}/tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/cookiecutter-pytest-plugin/HEAD/pytest-{{cookiecutter.plugin_name}}/tox.ini -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/cookiecutter-pytest-plugin/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/test_create_template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/cookiecutter-pytest-plugin/HEAD/tests/test_create_template.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/cookiecutter-pytest-plugin/HEAD/tox.ini --------------------------------------------------------------------------------