Skip to content

Commit 25c0ff4

Browse files
authored
Fix (#59)
* fixed codecov test, and added more documentation on codecov * small fix in README
1 parent bdf50b5 commit 25c0ff4

File tree

4 files changed

+11
-5
lines changed

4 files changed

+11
-5
lines changed

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ git push -u origin main
7474

7575
Finally, install the environment and the pre-commit hooks with
7676

77-
```
77+
```bash
7878
make install
7979
```
8080

@@ -86,6 +86,7 @@ To finalize the set-up for publishing to PyPi or Artifactory, see
8686
[here](https://fpgmaas.github.io/cookiecutter-poetry/features/publishing/#set-up-for-pypi).
8787
For activating the automatic documentation with MkDocs, see
8888
[here](https://fpgmaas.github.io/cookiecutter-poetry/features/mkdocs/#enabling-the-documentation-on-github).
89+
To enable the code coverage reports, see [here](https://fpgmaas.github.io/cookiecutter-poetry/features/codecov/).
8990

9091
## Acknowledgements
9192

docs/index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,15 +71,15 @@ git push -u origin main
7171

7272
Finally, install the environment and the pre-commit hooks with
7373

74-
```
74+
```bash
7575
make install
7676
```
7777

7878
You are now ready to start development on your project! The CI/CD
7979
pipeline will be triggered when you open a pull request, merge to main,
8080
or when you create a new release.
8181

82-
To finalize the set-up for publishing to PyPi or Artifactory, see [here](./features/publishing.md#set-up-for-pypi). For activating the automatic documentation with MkDocs, see [here](./features/mkdocs.md#enabling-the-documentation-on-github).
82+
To finalize the set-up for publishing to PyPi or Artifactory, see [here](./features/publishing.md#set-up-for-pypi). For activating the automatic documentation with MkDocs, see [here](./features/mkdocs.md#enabling-the-documentation-on-github). To enable the code coverage reports, see [here](./features/codecov).
8383

8484
## Acknowledgements
8585

{{cookiecutter.project_name}}/README.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,11 @@ git remote add origin [email protected]:{{cookiecutter.author_github_handle}}/{{coo
2626
git push -u origin main
2727
```
2828

29-
Finally, install the environment and the pre-commit hooks with `make install`.
29+
Finally, install the environment and the pre-commit hooks with
30+
31+
```bash
32+
make install
33+
```
3034

3135
You are now ready to start development on your project! The CI/CD
3236
pipeline will be triggered when you open a pull request, merge to main,
@@ -36,6 +40,7 @@ To finalize the set-up for publishing to PyPi or Artifactory, see
3640
[here](https://fpgmaas.github.io/cookiecutter-poetry/features/publishing/#set-up-for-pypi).
3741
For activating the automatic documentation with MkDocs, see
3842
[here](https://fpgmaas.github.io/cookiecutter-poetry/features/mkdocs/#enabling-the-documentation-on-github).
43+
To enable the code coverage reports, see [here](https://fpgmaas.github.io/cookiecutter-poetry/features/codecov/).
3944

4045
## Releasing a new version
4146

{{cookiecutter.project_name}}/{{cookiecutter.project_slug}}/foo.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,5 +13,5 @@ def foo() -> str:
1313
return "foo"
1414

1515

16-
if __name__ == "__main__":
16+
if __name__ == "__main__": # pragma: no cover
1717
print(foo())

0 commit comments

Comments
 (0)