├── .copier-answers.yml ├── .devcontainer └── devcontainer.json ├── .github ├── ISSUE_TEMPLATE │ ├── PULL_REQUEST_TEMPLATE │ │ └── pr_template.md │ ├── bug_report.md │ └── feature_request.md ├── dependabot.yml └── workflows │ ├── pypackage_check.yaml │ ├── release.yaml │ └── unit.yaml ├── .gitignore ├── .pre-commit-config.yaml ├── .readthedocs.yaml ├── AUTHORS.rst ├── CODE_OF_CONDUCT.rst ├── CONTRIBUTING.rst ├── LICENSE ├── README.rst ├── codecov.yml ├── demo_template ├── README.rst ├── copier.yaml ├── template │ └── README.rst.jinja └── tests │ ├── test_custom_template_fixture.py │ └── test_template.py ├── docs ├── _static │ └── custom.css ├── conf.py ├── contribute.rst ├── index.rst ├── install.rst └── usage.rst ├── noxfile.py ├── pyproject.toml ├── pytest_copie ├── __init__.py ├── plugin.py └── py.typed ├── stubs └── pytest_copie │ ├── __init__.pyi │ └── plugin.pyi └── tests ├── __init__.py ├── check_warnings.py ├── conftest.py ├── data └── warning_list.txt ├── test_copie.py └── test_copie_parent_child.py /.copier-answers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/12rambau/pytest-copie/HEAD/.copier-answers.yml -------------------------------------------------------------------------------- /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/12rambau/pytest-copie/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/PULL_REQUEST_TEMPLATE/pr_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/12rambau/pytest-copie/HEAD/.github/ISSUE_TEMPLATE/PULL_REQUEST_TEMPLATE/pr_template.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/12rambau/pytest-copie/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/12rambau/pytest-copie/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/12rambau/pytest-copie/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/pypackage_check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/12rambau/pytest-copie/HEAD/.github/workflows/pypackage_check.yaml -------------------------------------------------------------------------------- /.github/workflows/release.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/12rambau/pytest-copie/HEAD/.github/workflows/release.yaml -------------------------------------------------------------------------------- /.github/workflows/unit.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/12rambau/pytest-copie/HEAD/.github/workflows/unit.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/12rambau/pytest-copie/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/12rambau/pytest-copie/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/12rambau/pytest-copie/HEAD/.readthedocs.yaml -------------------------------------------------------------------------------- /AUTHORS.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/12rambau/pytest-copie/HEAD/AUTHORS.rst -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/12rambau/pytest-copie/HEAD/CODE_OF_CONDUCT.rst -------------------------------------------------------------------------------- /CONTRIBUTING.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/12rambau/pytest-copie/HEAD/CONTRIBUTING.rst -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/12rambau/pytest-copie/HEAD/LICENSE -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/12rambau/pytest-copie/HEAD/README.rst -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/12rambau/pytest-copie/HEAD/codecov.yml -------------------------------------------------------------------------------- /demo_template/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/12rambau/pytest-copie/HEAD/demo_template/README.rst -------------------------------------------------------------------------------- /demo_template/copier.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/12rambau/pytest-copie/HEAD/demo_template/copier.yaml -------------------------------------------------------------------------------- /demo_template/template/README.rst.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/12rambau/pytest-copie/HEAD/demo_template/template/README.rst.jinja -------------------------------------------------------------------------------- /demo_template/tests/test_custom_template_fixture.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/12rambau/pytest-copie/HEAD/demo_template/tests/test_custom_template_fixture.py -------------------------------------------------------------------------------- /demo_template/tests/test_template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/12rambau/pytest-copie/HEAD/demo_template/tests/test_template.py -------------------------------------------------------------------------------- /docs/_static/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/12rambau/pytest-copie/HEAD/docs/_static/custom.css -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/12rambau/pytest-copie/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/contribute.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/12rambau/pytest-copie/HEAD/docs/contribute.rst -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/12rambau/pytest-copie/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/install.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/12rambau/pytest-copie/HEAD/docs/install.rst -------------------------------------------------------------------------------- /docs/usage.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/12rambau/pytest-copie/HEAD/docs/usage.rst -------------------------------------------------------------------------------- /noxfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/12rambau/pytest-copie/HEAD/noxfile.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/12rambau/pytest-copie/HEAD/pyproject.toml -------------------------------------------------------------------------------- /pytest_copie/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/12rambau/pytest-copie/HEAD/pytest_copie/__init__.py -------------------------------------------------------------------------------- /pytest_copie/plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/12rambau/pytest-copie/HEAD/pytest_copie/plugin.py -------------------------------------------------------------------------------- /pytest_copie/py.typed: -------------------------------------------------------------------------------- 1 | # Marker file for PEP 561. The mypy package uses inline types. -------------------------------------------------------------------------------- /stubs/pytest_copie/__init__.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/12rambau/pytest-copie/HEAD/stubs/pytest_copie/__init__.pyi -------------------------------------------------------------------------------- /stubs/pytest_copie/plugin.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/12rambau/pytest-copie/HEAD/stubs/pytest_copie/plugin.pyi -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/12rambau/pytest-copie/HEAD/tests/__init__.py -------------------------------------------------------------------------------- /tests/check_warnings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/12rambau/pytest-copie/HEAD/tests/check_warnings.py -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/12rambau/pytest-copie/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/data/warning_list.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_copie.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/12rambau/pytest-copie/HEAD/tests/test_copie.py -------------------------------------------------------------------------------- /tests/test_copie_parent_child.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/12rambau/pytest-copie/HEAD/tests/test_copie_parent_child.py --------------------------------------------------------------------------------