Skip to content

Commit 695f3fc

Browse files
committed
General updates 2.
1 parent ca3f93a commit 695f3fc

File tree

14 files changed

+763
-158
lines changed

14 files changed

+763
-158
lines changed

.github/workflows/Pipeline.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ on:
99

1010
jobs:
1111
Pipeline:
12-
uses: pyTooling/Actions/.github/workflows/Pipeline-NamespacePackage.yml@dev
12+
uses: pyTooling/Actions/.github/workflows/CompletePipeline.yml@r2
1313
with:
1414
package_namespace: pyEDAA
1515
package_name: ProjectModel
@@ -25,3 +25,6 @@ jobs:
2525
# apptest_include_list:
2626
# apptest_exclude_list:
2727
# apptest_disable_list:
28+
secrets:
29+
PYPI_TOKEN: ${{ secrets.PYPI_TOKEN }}
30+
CODACY_PROJECT_TOKEN: ${{ secrets.CODACY_PROJECT_TOKEN }}

.gitignore

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,13 @@ __pycache__/
66
.coverage
77
.cov
88
coverage.xml
9+
/report/coverage
10+
11+
# mypy
12+
/report/typing
13+
14+
# pytest
15+
/report/unit
916

1017
# setuptools
1118
/build/**/*.*
@@ -15,11 +22,14 @@ coverage.xml
1522
# Dependencies
1623
!requirements.txt
1724

18-
# Sphinx
25+
# Sphinx documentation
1926
/doc/_build/
2027
/doc/_theme/
2128
/doc/pyEDAA.ProjectModel/**/*.*
2229
!/doc/pyEDAA.ProjectModel/index.rst
2330

2431
# PyCharm project files
2532
/.idea/workspace.xml
33+
34+
# Git files
35+
!.git*

doc/Dependency.rst

Lines changed: 120 additions & 39 deletions
Large diffs are not rendered by default.

doc/DocCoverage.rst

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
Documentation Coverage
2+
######################
3+
4+
Documentation coverage generated by `docstr-coverage <https://github.com/HunterMcGushion/docstr_coverage>`__.
5+
6+
.. report:doc-coverage::
7+
:packageid: src

0 commit comments

Comments
 (0)