Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ Releases | <https://github.com/DiamondLightSource/python-interface-to-wor

# Using Copier
```bash
module load uv
mkdir new_directory_path
cd new_directory_path
git init
Expand All @@ -29,11 +30,11 @@ cd ..
then either:
```bash
git clone git@github.com:DiamondLightSource/python-interface-to-workflows.git
copier copy {this_repo's_path} {new_directory_path}
uvx copier copy {this_repo's_path} {new_directory_path}
```
or:
```bash
copier copy git@github.com:DiamondLightSource/python-interface-to-workflows.git .
uvx copier copy git@github.com:DiamondLightSource/python-interface-to-workflows.git .
code .
```

Expand Down
2 changes: 1 addition & 1 deletion src/copier_template/pyproject.toml.jinja
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ description = "Run tests with coverage"
commands = [
[
"pytest",
"--cov={% endraw %}{{project_name}}{% raw %}",
"--cov={{project_name}}",
"--cov-report",
"term",
"--cov-report",
Expand Down
Loading