Skip to content
Open
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
2 changes: 1 addition & 1 deletion .copier-answers.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Changes here will be overwritten by Copier
_commit: 5.0.1
_commit: 5.0.2
_src_path: https://github.com/DiamondLightSource/python-copier-template
author_email: [email protected]
author_name: Callum Forrester
Expand Down
2 changes: 1 addition & 1 deletion .github/CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,4 +24,4 @@ It is recommended that developers use a [vscode devcontainer](https://code.visua

This project was created using the [Diamond Light Source Copier Template](https://github.com/DiamondLightSource/python-copier-template) for Python projects.

For more information on common tasks like setting up a developer environment, running the tests, and setting a pre-commit hook, see the template's [How-to guides](https://diamondlightsource.github.io/python-copier-template/5.0.1/how-to.html).
For more information on common tasks like setting up a developer environment, running the tests, and setting a pre-commit hook, see the template's [How-to guides](https://diamondlightsource.github.io/python-copier-template/5.0.2/how-to.html).
5 changes: 4 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ commands = [
[
"pyright",
"--pythonpath",
".venv/bin/python",
"{env:VIRTUAL_ENV}/bin/python",
"src",
"tests",
{ replace = "posargs", default = [
Expand All @@ -151,6 +151,7 @@ description = "Run unit tests with coverage"
commands = [
[
"pytest",
<<<<<<< before updating
"tests/unit_tests",
"--cov=blueapi",
"--cov-report",
Expand All @@ -168,6 +169,8 @@ commands = [
[
"pytest",
"tests/system_tests",
=======
>>>>>>> after updating
"--cov=blueapi",
"--cov-report",
"term",
Expand Down
Loading