Test copier templates
Project description
copier-template-tester
Parametrize copier templates to test for syntax errors, check the expected output, and to check against copier versions.
Note that ctt only tests the copier copy operation and doesn't check the update behavior and any version-specific logic that your template may contain because of how quickly those tests become complex.
Usage
Configuration File
When creating a copier template repository, I recommend following the nested "subdirectory" approach so that the directory looks like this:
└── template_dir
│ └── {{ _copier_conf.answers_file }}.jinja
├── README.md
├── copier.yml
└── ctt.toml
Create a new ctt.toml file in the top-level directory of your copier repository. Populate the file to look like the below example.
# Specify shared data across all 'output' destinations
# Note that the copier.yml defaults are used whenever the key is not set in this file
[defaults]
project_name = "placeholder"
copyright_year = 2022
# Parametrize each output with a relative path and optionally any values to override
[output.".ctt/defaults"]
[output.".ctt/no_all"]
package_name = "testing-no-all"
include_all = false
Extra tasks
Anything in the _extra_tasks key will be run after that project is generated. This is useful for running tests or other tasks that are not part of the copier template.
[defaults]
_extra_tasks = [
"pre-commit run --all-files",
]
[output.".ctt/also-run-pytest-here"]
_extra_tasks = [
"poetry run pytest",
]
Pre-Commit Hook
First, add this section to your .pre-commit-config.yml file:
repos:
- repo: https://github.com/KyleKing/copier-template-tester
rev: main
hooks:
- id: copier-template-tester
Install and update to the latest revision:
pre-commit autoupdate
The run with pre-commit:
pre-commit run --all-files copier-template-tester
pipx
You can also try ctt as a CLI tool by installing with pipx:
pipx install copier-template-tester
cd ~/your/copier/project
ctt
More Examples
For more example code, see the scripts directory or the tests.
Project Status
See the Open Issues and/or the CODE_TAG_SUMMARY. For release history, see the CHANGELOG.
Contributing
We welcome pull requests! For your pull request to be accepted smoothly, we suggest that you first open a GitHub issue to discuss your idea. For resources on getting started with the code base, see the below documentation:
Code of Conduct
We follow the Contributor Covenant Code of Conduct.
Open Source Status
We try to reasonably meet most aspects of the "OpenSSF scorecard" from Open Source Insights
Responsible Disclosure
If you have any security issue to report, please contact the project maintainers privately. You can reach us at dev.act.kyle@gmail.com.
License
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file copier_template_tester-2.2.0.tar.gz.
File metadata
- Download URL: copier_template_tester-2.2.0.tar.gz
- Upload date:
- Size: 9.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/2.0.1 CPython/3.12.5 Darwin/24.3.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
dda9ee02024df700195f096211a4809ba0220b8806c2603a15801115e7f9ea25
|
|
| MD5 |
9114d7dcda286f68008633769c87e8c7
|
|
| BLAKE2b-256 |
338c58f76f40690d36eec360debf5b23075b1fe171b8b199a9ae1def9670484f
|
File details
Details for the file copier_template_tester-2.2.0-py3-none-any.whl.
File metadata
- Download URL: copier_template_tester-2.2.0-py3-none-any.whl
- Upload date:
- Size: 11.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/2.0.1 CPython/3.12.5 Darwin/24.3.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
818e0d94da0653ce0db51d252b970959832801a79d6431e85e7b08d9dfb6f2e9
|
|
| MD5 |
fae91b9d8fbde61cad3197483e41d00b
|
|
| BLAKE2b-256 |
e6045825313e0e30c35be17effa2237380f6d88746c845d9875dd4c541f2c53b
|