generated from seedcase-project/template-python-package
-
Notifications
You must be signed in to change notification settings - Fork 0
build: 🔨 add test template recipe to justfile
#69
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
69430fd
build: :hammer: add `test` template recipe to justfile
lwjohnst86 54c9191
Merge branch 'main' of https://github.com/seedcase-project/template-d…
lwjohnst86 18adc1d
chore: :see_no_evil: ignore the `_temp` folder
lwjohnst86 f77c689
build: :hammer: update `--data` variables with future names
lwjohnst86 887a654
Merge branch 'main' into build/test-template-recipe
lwjohnst86 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -2,6 +2,7 @@ | |
| _ignore | ||
| bin/ | ||
| dev/ | ||
| _temp/ | ||
|
|
||
| # Temporary files | ||
| *.tmp | ||
|
|
||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -2,7 +2,7 @@ | |
| just --list --unsorted | ||
|
|
||
| # Run all build-related recipes in the justfile | ||
| run-all: install-deps format-python check-python check-spelling check-commits | ||
| run-all: install-deps format-python check-python check-spelling check-commits test | ||
|
|
||
| # Install the pre-commit hooks | ||
| install-precommit: | ||
|
|
@@ -41,3 +41,24 @@ check-commits: | |
| # Check for spelling errors in files | ||
| check-spelling: | ||
| uv run typos | ||
|
|
||
| test: | ||
| #!/bin/zsh | ||
| temp_dir="_temp/test-data-package" | ||
| rm -rf $temp_dir | ||
| mkdir -p $temp_dir | ||
| # vcs-ref means the current commit/head, not a tag. | ||
| # `.` means the current directory contains the template. | ||
| uvx copier copy --vcs-ref=HEAD . $temp_dir \ | ||
| --defaults \ | ||
| --data package_abbrev= "test-data-package" \ | ||
| --data package_github="first-last/test-data-package" \ | ||
| --data author_given_name="First" \ | ||
| --data author_family_name="Last" \ | ||
| --data author_email="[email protected]" | ||
| # TODO: Other checks/tests? | ||
|
|
||
| cleanup: | ||
signekb marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| #!/bin/zsh | ||
| temp_dir=$("_temp/test-data-package")) | ||
| rm -rf $temp_dir | ||
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.