File tree Expand file tree Collapse file tree 4 files changed +14
-13
lines changed
{{cookiecutter.project_slug}} Expand file tree Collapse file tree 4 files changed +14
-13
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change 7575
7676### UML Diagrams
7777
78- #### Packages
78+ #### Packages and Modules
7979
8080 <a href =" https://github.com/{{cookiecutter.github_username}}/{{cookiecutter.project_slug}}/raw/main/docs/uml/diagrams/packages_{{cookiecutter.package_name}}.png " >
8181 <img src="https://github.com/{{cookiecutter.github_username}}/{{cookiecutter.project_slug}}/raw/main/docs/uml/diagrams/packages_{{cookiecutter.package_name}}.png" alt="uml-diagram-packages">
@@ -116,7 +116,7 @@ This Project depends on the following projects.
116116 git clone https://github.com/{{cookiecutter.github_username}}/{{cookiecutter.project_slug}}
117117 cd {{cookiecutter.project_slug}}
118118 ```
119- 2 . Install NPM packages
119+ 2 . Install Python packages
120120 ``` sh
121121 poetry install
122122 ```
Original file line number Diff line number Diff line change @@ -71,7 +71,7 @@ exclude = '''
7171
7272[tool .pytest .ini_options ]
7373minversion = " 6.0"
74- addopts = " --verbose --color=yes --cov=src --cov-fail-under=100 --cov-report term-missing --doctest-modules"
74+ addopts = " --verbose --color=yes --cov=src --cov-fail-under=100 --cov-report term-missing --doctest-modules --cov-config=setup.cfg "
7575testpaths = [
7676 " tests" ,
7777 " src"
Original file line number Diff line number Diff line change @@ -19,3 +19,14 @@ exclude =
1919[flake8:darglint]
2020strictness = long
2121docstring_style = google
22+
23+ [report]
24+ exclude_lines =
25+ pragma: no cover
26+ def __repr__
27+ if self.debug:
28+ if settings.DEBUG
29+ raise AssertionError
30+ raise NotImplementedError
31+ if 0:
32+ if __name__ == .__main__.:
You can’t perform that action at this time.
0 commit comments