├── .editorconfig ├── .github ├── CODEOWNERS ├── dependabot.yml ├── pull_request_template.md └── workflows │ └── Pipeline.yml ├── .gitignore ├── .idea ├── inspectionProfiles │ └── profiles_settings.xml ├── modules.xml └── pyEDAA.Reports.iml ├── .vscode └── settings.json ├── LICENSE.md ├── README.md ├── dist └── requirements.txt ├── doc ├── CodeCoverage.rst ├── CodeCoverage │ └── index.rst ├── CommandLineInterface.rst ├── Dependency.rst ├── Doc-License.rst ├── DocCoverage.rst ├── DocCoverage │ └── index.rst ├── Glossary.rst ├── Installation.rst ├── License.rst ├── Logging │ └── index.rst ├── Makefile ├── TODO.rst ├── Unittesting │ ├── DataModel.rst │ ├── Features.rst │ ├── JUnitDataModel.rst │ ├── OSVVMDataModel.rst │ └── index.rst ├── _static │ ├── css │ │ └── override.css │ ├── favicon.svg │ ├── logo.svg │ ├── overview.png │ └── work-in-progress.png ├── _templates │ └── autoapi │ │ ├── module.rst │ │ └── package.rst ├── conf.py ├── coverage │ └── index.rst ├── index.rst ├── make.bat ├── old │ ├── Frontends.rst │ ├── FunctionalCoverage.rst │ ├── Introduction.rst │ ├── LineCoverage.rst │ ├── Resources.rst │ ├── RichLogging.rst │ └── Tracking.rst ├── prolog.inc ├── reports │ ├── coverage │ │ └── index.rst │ ├── doccoverage.rst │ ├── typing │ │ └── index.rst │ └── unittests.rst ├── requirements.txt ├── shields.inc ├── typing │ └── index.rst └── unittests │ └── index.rst ├── examples ├── Cpp │ └── GoogleTest │ │ ├── CMakeLists.txt │ │ ├── lib │ │ ├── CMakeLists.txt │ │ └── googletest │ │ │ └── CMakeLists.txt │ │ ├── src │ │ ├── Counter.cpp │ │ └── Counter.hpp │ │ └── test │ │ └── Counter.test.cpp ├── Java │ └── JUnit │ │ ├── build-github.xml │ │ ├── src │ │ └── my │ │ │ └── pack │ │ │ ├── MyClass.java │ │ │ └── OtherClass.java │ │ └── test │ │ └── my │ │ ├── AllTests.java │ │ └── pack │ │ ├── AllTests.java │ │ ├── MyClassTest.java │ │ └── OtherClassTest.java └── Python │ └── pytest │ ├── TestModuleA.py │ └── TestModuleB.py ├── pyEDAA.Reports.drawio ├── pyEDAA └── Reports │ ├── CLI │ ├── Unittesting.py │ └── __init__.py │ ├── Dependency │ └── __init__.py │ ├── DocumentationCoverage │ ├── Python.py │ └── __init__.py │ ├── Requirement │ ├── Python.py │ └── __init__.py │ ├── Resources │ ├── Ant-JUnit4.xsd │ ├── Any-JUnit.xsd │ ├── CTest-JUnit.xsd │ ├── GoogleTest-JUnit.xsd │ ├── PyTest-JUnit.xsd │ └── __init__.py │ ├── Unittesting │ ├── JUnit │ │ ├── AntJUnit4.py │ │ ├── CTestJUnit.py │ │ ├── GoogleTestJUnit.py │ │ ├── PyTestJUnit.py │ │ └── __init__.py │ └── __init__.py │ ├── __init__.py │ ├── py.typed │ └── requirements.txt ├── pyproject.toml ├── requirements.txt ├── run.ps1 ├── setup.py └── tests ├── __init__.py ├── app ├── GitHub │ ├── Examples.py │ └── __init__.py ├── __init__.py └── requirements.txt ├── data └── JUnit │ ├── OsvvmLibraries │ └── OSVVMLibraries_RunAllTests.xml │ ├── VUnit │ ├── vunit.bamboo.xml │ └── vunit.jenkins.xml │ ├── pyAttributes │ └── pytest.pyAttributes.xml │ ├── pyEDAA.Reports │ ├── Cpp-GoogleTest │ │ ├── ctest.xml │ │ └── gtest.xml │ ├── Java-Ant-JUnit4 │ │ ├── TEST-my.AllTests.xml │ │ ├── TEST-my.pack.AllTests.xml │ │ ├── TEST-my.pack.MyClassTest.xml │ │ └── TEST-my.pack.OtherClassTest.xml │ └── Python-pytest │ │ └── TestReportSummary.xml │ ├── pyGHDL │ ├── pyGHDL-Ubuntu-24.04-3.12.xml │ ├── pyGHDL-Ubuntu-3.12.xml │ ├── pyGHDL-Windows-3.12.xml │ └── pyGHDL-Winodws-2022-3.12.xml │ ├── pyTooling │ ├── Platform-UnitTestReportSummary-XML-macos-arm-native-3.12.xml │ ├── Platform-UnitTestReportSummary-XML-macos-native-3.12.xml │ ├── Platform-UnitTestReportSummary-XML-msys2-CLANG64-3.11.xml │ ├── Platform-UnitTestReportSummary-XML-msys2-MINGW64-3.11.xml │ ├── Platform-UnitTestReportSummary-XML-msys2-UCRT64-3.11.xml │ ├── Platform-UnitTestReportSummary-XML-ubuntu-native-3.12.xml │ ├── Platform-UnitTestReportSummary-XML-windows-native-3.12.xml │ ├── README.md │ ├── pyTooling-UnitTestReportSummary-XML-macos-arm-native-3.10.xml │ ├── pyTooling-UnitTestReportSummary-XML-macos-arm-native-3.11.xml │ ├── pyTooling-UnitTestReportSummary-XML-macos-arm-native-3.12.xml │ ├── pyTooling-UnitTestReportSummary-XML-macos-arm-native-3.8.xml │ ├── pyTooling-UnitTestReportSummary-XML-macos-arm-native-3.9.xml │ ├── pyTooling-UnitTestReportSummary-XML-macos-arm-native-pypy-3.10.xml │ ├── pyTooling-UnitTestReportSummary-XML-macos-arm-native-pypy-3.8.xml │ ├── pyTooling-UnitTestReportSummary-XML-macos-arm-native-pypy-3.9.xml │ ├── pyTooling-UnitTestReportSummary-XML-macos-native-3.10.xml │ ├── pyTooling-UnitTestReportSummary-XML-macos-native-3.11.xml │ ├── pyTooling-UnitTestReportSummary-XML-macos-native-3.12.xml │ ├── pyTooling-UnitTestReportSummary-XML-macos-native-3.8.xml │ ├── pyTooling-UnitTestReportSummary-XML-macos-native-3.9.xml │ ├── pyTooling-UnitTestReportSummary-XML-macos-native-pypy-3.10.xml │ ├── pyTooling-UnitTestReportSummary-XML-macos-native-pypy-3.8.xml │ ├── pyTooling-UnitTestReportSummary-XML-macos-native-pypy-3.9.xml │ ├── pyTooling-UnitTestReportSummary-XML-msys2-MINGW64-3.11.xml │ ├── pyTooling-UnitTestReportSummary-XML-msys2-UCRT64-3.11.xml │ ├── pyTooling-UnitTestReportSummary-XML-ubuntu-native-3.10.xml │ ├── pyTooling-UnitTestReportSummary-XML-ubuntu-native-3.11.xml │ ├── pyTooling-UnitTestReportSummary-XML-ubuntu-native-3.12.xml │ ├── pyTooling-UnitTestReportSummary-XML-ubuntu-native-3.8.xml │ ├── pyTooling-UnitTestReportSummary-XML-ubuntu-native-3.9.xml │ ├── pyTooling-UnitTestReportSummary-XML-ubuntu-native-pypy-3.10.xml │ ├── pyTooling-UnitTestReportSummary-XML-ubuntu-native-pypy-3.8.xml │ ├── pyTooling-UnitTestReportSummary-XML-ubuntu-native-pypy-3.9.xml │ ├── pyTooling-UnitTestReportSummary-XML-windows-native-3.10.xml │ ├── pyTooling-UnitTestReportSummary-XML-windows-native-3.11.xml │ ├── pyTooling-UnitTestReportSummary-XML-windows-native-3.12.xml │ ├── pyTooling-UnitTestReportSummary-XML-windows-native-3.8.xml │ ├── pyTooling-UnitTestReportSummary-XML-windows-native-3.9.xml │ ├── pyTooling-UnitTestReportSummary-XML-windows-native-pypy-3.10.xml │ ├── pyTooling-UnitTestReportSummary-XML-windows-native-pypy-3.8.xml │ └── pyTooling-UnitTestReportSummary-XML-windows-native-pypy-3.9.xml │ └── pyVersioning │ └── unittests.xml ├── packages ├── documented │ ├── MyModule.py │ └── __init__.py ├── partially │ ├── MyModule.py │ └── __init__.py └── undocumented │ ├── MyModule.py │ └── __init__.py ├── requirements.txt └── unit ├── DocumentationCoverage ├── DataModel.py ├── DocStrCoverage.py └── __init__.py ├── Unittesting ├── DataModel.py ├── Examples │ ├── OSVVM.py │ ├── __init__.py │ ├── pyAttributes.py │ ├── pyEDAAReports.py │ ├── pyTooling.py │ └── pyVersioning.py ├── JUnit.py ├── Merge.py └── __init__.py ├── __init__.py └── requirements.txt /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edaa-org/pyEDAA.Reports/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edaa-org/pyEDAA.Reports/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edaa-org/pyEDAA.Reports/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edaa-org/pyEDAA.Reports/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/Pipeline.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edaa-org/pyEDAA.Reports/HEAD/.github/workflows/Pipeline.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edaa-org/pyEDAA.Reports/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edaa-org/pyEDAA.Reports/HEAD/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edaa-org/pyEDAA.Reports/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/pyEDAA.Reports.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edaa-org/pyEDAA.Reports/HEAD/.idea/pyEDAA.Reports.iml -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "files.trimTrailingWhitespace": false, 3 | } 4 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edaa-org/pyEDAA.Reports/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edaa-org/pyEDAA.Reports/HEAD/README.md -------------------------------------------------------------------------------- /dist/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edaa-org/pyEDAA.Reports/HEAD/dist/requirements.txt -------------------------------------------------------------------------------- /doc/CodeCoverage.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edaa-org/pyEDAA.Reports/HEAD/doc/CodeCoverage.rst -------------------------------------------------------------------------------- /doc/CodeCoverage/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edaa-org/pyEDAA.Reports/HEAD/doc/CodeCoverage/index.rst -------------------------------------------------------------------------------- /doc/CommandLineInterface.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edaa-org/pyEDAA.Reports/HEAD/doc/CommandLineInterface.rst -------------------------------------------------------------------------------- /doc/Dependency.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edaa-org/pyEDAA.Reports/HEAD/doc/Dependency.rst -------------------------------------------------------------------------------- /doc/Doc-License.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edaa-org/pyEDAA.Reports/HEAD/doc/Doc-License.rst -------------------------------------------------------------------------------- /doc/DocCoverage.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edaa-org/pyEDAA.Reports/HEAD/doc/DocCoverage.rst -------------------------------------------------------------------------------- /doc/DocCoverage/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edaa-org/pyEDAA.Reports/HEAD/doc/DocCoverage/index.rst -------------------------------------------------------------------------------- /doc/Glossary.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edaa-org/pyEDAA.Reports/HEAD/doc/Glossary.rst -------------------------------------------------------------------------------- /doc/Installation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edaa-org/pyEDAA.Reports/HEAD/doc/Installation.rst -------------------------------------------------------------------------------- /doc/License.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edaa-org/pyEDAA.Reports/HEAD/doc/License.rst -------------------------------------------------------------------------------- /doc/Logging/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edaa-org/pyEDAA.Reports/HEAD/doc/Logging/index.rst -------------------------------------------------------------------------------- /doc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edaa-org/pyEDAA.Reports/HEAD/doc/Makefile -------------------------------------------------------------------------------- /doc/TODO.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edaa-org/pyEDAA.Reports/HEAD/doc/TODO.rst -------------------------------------------------------------------------------- /doc/Unittesting/DataModel.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edaa-org/pyEDAA.Reports/HEAD/doc/Unittesting/DataModel.rst -------------------------------------------------------------------------------- /doc/Unittesting/Features.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edaa-org/pyEDAA.Reports/HEAD/doc/Unittesting/Features.rst -------------------------------------------------------------------------------- /doc/Unittesting/JUnitDataModel.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edaa-org/pyEDAA.Reports/HEAD/doc/Unittesting/JUnitDataModel.rst -------------------------------------------------------------------------------- /doc/Unittesting/OSVVMDataModel.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edaa-org/pyEDAA.Reports/HEAD/doc/Unittesting/OSVVMDataModel.rst -------------------------------------------------------------------------------- /doc/Unittesting/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edaa-org/pyEDAA.Reports/HEAD/doc/Unittesting/index.rst -------------------------------------------------------------------------------- /doc/_static/css/override.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edaa-org/pyEDAA.Reports/HEAD/doc/_static/css/override.css -------------------------------------------------------------------------------- /doc/_static/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edaa-org/pyEDAA.Reports/HEAD/doc/_static/favicon.svg -------------------------------------------------------------------------------- /doc/_static/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edaa-org/pyEDAA.Reports/HEAD/doc/_static/logo.svg -------------------------------------------------------------------------------- /doc/_static/overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edaa-org/pyEDAA.Reports/HEAD/doc/_static/overview.png -------------------------------------------------------------------------------- /doc/_static/work-in-progress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edaa-org/pyEDAA.Reports/HEAD/doc/_static/work-in-progress.png -------------------------------------------------------------------------------- /doc/_templates/autoapi/module.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edaa-org/pyEDAA.Reports/HEAD/doc/_templates/autoapi/module.rst -------------------------------------------------------------------------------- /doc/_templates/autoapi/package.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edaa-org/pyEDAA.Reports/HEAD/doc/_templates/autoapi/package.rst -------------------------------------------------------------------------------- /doc/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edaa-org/pyEDAA.Reports/HEAD/doc/conf.py -------------------------------------------------------------------------------- /doc/coverage/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edaa-org/pyEDAA.Reports/HEAD/doc/coverage/index.rst -------------------------------------------------------------------------------- /doc/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edaa-org/pyEDAA.Reports/HEAD/doc/index.rst -------------------------------------------------------------------------------- /doc/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edaa-org/pyEDAA.Reports/HEAD/doc/make.bat -------------------------------------------------------------------------------- /doc/old/Frontends.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edaa-org/pyEDAA.Reports/HEAD/doc/old/Frontends.rst -------------------------------------------------------------------------------- /doc/old/FunctionalCoverage.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edaa-org/pyEDAA.Reports/HEAD/doc/old/FunctionalCoverage.rst -------------------------------------------------------------------------------- /doc/old/Introduction.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edaa-org/pyEDAA.Reports/HEAD/doc/old/Introduction.rst -------------------------------------------------------------------------------- /doc/old/LineCoverage.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edaa-org/pyEDAA.Reports/HEAD/doc/old/LineCoverage.rst -------------------------------------------------------------------------------- /doc/old/Resources.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edaa-org/pyEDAA.Reports/HEAD/doc/old/Resources.rst -------------------------------------------------------------------------------- /doc/old/RichLogging.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edaa-org/pyEDAA.Reports/HEAD/doc/old/RichLogging.rst -------------------------------------------------------------------------------- /doc/old/Tracking.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edaa-org/pyEDAA.Reports/HEAD/doc/old/Tracking.rst -------------------------------------------------------------------------------- /doc/prolog.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edaa-org/pyEDAA.Reports/HEAD/doc/prolog.inc -------------------------------------------------------------------------------- /doc/reports/coverage/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edaa-org/pyEDAA.Reports/HEAD/doc/reports/coverage/index.rst -------------------------------------------------------------------------------- /doc/reports/doccoverage.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edaa-org/pyEDAA.Reports/HEAD/doc/reports/doccoverage.rst -------------------------------------------------------------------------------- /doc/reports/typing/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edaa-org/pyEDAA.Reports/HEAD/doc/reports/typing/index.rst -------------------------------------------------------------------------------- /doc/reports/unittests.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edaa-org/pyEDAA.Reports/HEAD/doc/reports/unittests.rst -------------------------------------------------------------------------------- /doc/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edaa-org/pyEDAA.Reports/HEAD/doc/requirements.txt -------------------------------------------------------------------------------- /doc/shields.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edaa-org/pyEDAA.Reports/HEAD/doc/shields.inc -------------------------------------------------------------------------------- /doc/typing/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edaa-org/pyEDAA.Reports/HEAD/doc/typing/index.rst -------------------------------------------------------------------------------- /doc/unittests/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edaa-org/pyEDAA.Reports/HEAD/doc/unittests/index.rst -------------------------------------------------------------------------------- /examples/Cpp/GoogleTest/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edaa-org/pyEDAA.Reports/HEAD/examples/Cpp/GoogleTest/CMakeLists.txt -------------------------------------------------------------------------------- /examples/Cpp/GoogleTest/lib/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | add_subdirectory(googletest) 2 | -------------------------------------------------------------------------------- /examples/Cpp/GoogleTest/lib/googletest/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edaa-org/pyEDAA.Reports/HEAD/examples/Cpp/GoogleTest/lib/googletest/CMakeLists.txt -------------------------------------------------------------------------------- /examples/Cpp/GoogleTest/src/Counter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edaa-org/pyEDAA.Reports/HEAD/examples/Cpp/GoogleTest/src/Counter.cpp -------------------------------------------------------------------------------- /examples/Cpp/GoogleTest/src/Counter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edaa-org/pyEDAA.Reports/HEAD/examples/Cpp/GoogleTest/src/Counter.hpp -------------------------------------------------------------------------------- /examples/Cpp/GoogleTest/test/Counter.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edaa-org/pyEDAA.Reports/HEAD/examples/Cpp/GoogleTest/test/Counter.test.cpp -------------------------------------------------------------------------------- /examples/Java/JUnit/build-github.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edaa-org/pyEDAA.Reports/HEAD/examples/Java/JUnit/build-github.xml -------------------------------------------------------------------------------- /examples/Java/JUnit/src/my/pack/MyClass.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edaa-org/pyEDAA.Reports/HEAD/examples/Java/JUnit/src/my/pack/MyClass.java -------------------------------------------------------------------------------- /examples/Java/JUnit/src/my/pack/OtherClass.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edaa-org/pyEDAA.Reports/HEAD/examples/Java/JUnit/src/my/pack/OtherClass.java -------------------------------------------------------------------------------- /examples/Java/JUnit/test/my/AllTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edaa-org/pyEDAA.Reports/HEAD/examples/Java/JUnit/test/my/AllTests.java -------------------------------------------------------------------------------- /examples/Java/JUnit/test/my/pack/AllTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edaa-org/pyEDAA.Reports/HEAD/examples/Java/JUnit/test/my/pack/AllTests.java -------------------------------------------------------------------------------- /examples/Java/JUnit/test/my/pack/MyClassTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edaa-org/pyEDAA.Reports/HEAD/examples/Java/JUnit/test/my/pack/MyClassTest.java -------------------------------------------------------------------------------- /examples/Java/JUnit/test/my/pack/OtherClassTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edaa-org/pyEDAA.Reports/HEAD/examples/Java/JUnit/test/my/pack/OtherClassTest.java -------------------------------------------------------------------------------- /examples/Python/pytest/TestModuleA.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edaa-org/pyEDAA.Reports/HEAD/examples/Python/pytest/TestModuleA.py -------------------------------------------------------------------------------- /examples/Python/pytest/TestModuleB.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edaa-org/pyEDAA.Reports/HEAD/examples/Python/pytest/TestModuleB.py -------------------------------------------------------------------------------- /pyEDAA.Reports.drawio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edaa-org/pyEDAA.Reports/HEAD/pyEDAA.Reports.drawio -------------------------------------------------------------------------------- /pyEDAA/Reports/CLI/Unittesting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edaa-org/pyEDAA.Reports/HEAD/pyEDAA/Reports/CLI/Unittesting.py -------------------------------------------------------------------------------- /pyEDAA/Reports/CLI/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edaa-org/pyEDAA.Reports/HEAD/pyEDAA/Reports/CLI/__init__.py -------------------------------------------------------------------------------- /pyEDAA/Reports/Dependency/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edaa-org/pyEDAA.Reports/HEAD/pyEDAA/Reports/Dependency/__init__.py -------------------------------------------------------------------------------- /pyEDAA/Reports/DocumentationCoverage/Python.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edaa-org/pyEDAA.Reports/HEAD/pyEDAA/Reports/DocumentationCoverage/Python.py -------------------------------------------------------------------------------- /pyEDAA/Reports/DocumentationCoverage/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edaa-org/pyEDAA.Reports/HEAD/pyEDAA/Reports/DocumentationCoverage/__init__.py -------------------------------------------------------------------------------- /pyEDAA/Reports/Requirement/Python.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edaa-org/pyEDAA.Reports/HEAD/pyEDAA/Reports/Requirement/Python.py -------------------------------------------------------------------------------- /pyEDAA/Reports/Requirement/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edaa-org/pyEDAA.Reports/HEAD/pyEDAA/Reports/Requirement/__init__.py -------------------------------------------------------------------------------- /pyEDAA/Reports/Resources/Ant-JUnit4.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edaa-org/pyEDAA.Reports/HEAD/pyEDAA/Reports/Resources/Ant-JUnit4.xsd -------------------------------------------------------------------------------- /pyEDAA/Reports/Resources/Any-JUnit.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edaa-org/pyEDAA.Reports/HEAD/pyEDAA/Reports/Resources/Any-JUnit.xsd -------------------------------------------------------------------------------- /pyEDAA/Reports/Resources/CTest-JUnit.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edaa-org/pyEDAA.Reports/HEAD/pyEDAA/Reports/Resources/CTest-JUnit.xsd -------------------------------------------------------------------------------- /pyEDAA/Reports/Resources/GoogleTest-JUnit.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edaa-org/pyEDAA.Reports/HEAD/pyEDAA/Reports/Resources/GoogleTest-JUnit.xsd -------------------------------------------------------------------------------- /pyEDAA/Reports/Resources/PyTest-JUnit.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edaa-org/pyEDAA.Reports/HEAD/pyEDAA/Reports/Resources/PyTest-JUnit.xsd -------------------------------------------------------------------------------- /pyEDAA/Reports/Resources/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edaa-org/pyEDAA.Reports/HEAD/pyEDAA/Reports/Resources/__init__.py -------------------------------------------------------------------------------- /pyEDAA/Reports/Unittesting/JUnit/AntJUnit4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edaa-org/pyEDAA.Reports/HEAD/pyEDAA/Reports/Unittesting/JUnit/AntJUnit4.py -------------------------------------------------------------------------------- /pyEDAA/Reports/Unittesting/JUnit/CTestJUnit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edaa-org/pyEDAA.Reports/HEAD/pyEDAA/Reports/Unittesting/JUnit/CTestJUnit.py -------------------------------------------------------------------------------- /pyEDAA/Reports/Unittesting/JUnit/GoogleTestJUnit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edaa-org/pyEDAA.Reports/HEAD/pyEDAA/Reports/Unittesting/JUnit/GoogleTestJUnit.py -------------------------------------------------------------------------------- /pyEDAA/Reports/Unittesting/JUnit/PyTestJUnit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edaa-org/pyEDAA.Reports/HEAD/pyEDAA/Reports/Unittesting/JUnit/PyTestJUnit.py -------------------------------------------------------------------------------- /pyEDAA/Reports/Unittesting/JUnit/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edaa-org/pyEDAA.Reports/HEAD/pyEDAA/Reports/Unittesting/JUnit/__init__.py -------------------------------------------------------------------------------- /pyEDAA/Reports/Unittesting/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edaa-org/pyEDAA.Reports/HEAD/pyEDAA/Reports/Unittesting/__init__.py -------------------------------------------------------------------------------- /pyEDAA/Reports/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edaa-org/pyEDAA.Reports/HEAD/pyEDAA/Reports/__init__.py -------------------------------------------------------------------------------- /pyEDAA/Reports/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyEDAA/Reports/requirements.txt: -------------------------------------------------------------------------------- 1 | junitparser 2 | yamldataclassconfig 3 | -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edaa-org/pyEDAA.Reports/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edaa-org/pyEDAA.Reports/HEAD/requirements.txt -------------------------------------------------------------------------------- /run.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edaa-org/pyEDAA.Reports/HEAD/run.ps1 -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edaa-org/pyEDAA.Reports/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edaa-org/pyEDAA.Reports/HEAD/tests/__init__.py -------------------------------------------------------------------------------- /tests/app/GitHub/Examples.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edaa-org/pyEDAA.Reports/HEAD/tests/app/GitHub/Examples.py -------------------------------------------------------------------------------- /tests/app/GitHub/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edaa-org/pyEDAA.Reports/HEAD/tests/app/GitHub/__init__.py -------------------------------------------------------------------------------- /tests/app/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edaa-org/pyEDAA.Reports/HEAD/tests/app/__init__.py -------------------------------------------------------------------------------- /tests/app/requirements.txt: -------------------------------------------------------------------------------- 1 | -r ../requirements.txt 2 | -------------------------------------------------------------------------------- /tests/data/JUnit/OsvvmLibraries/OSVVMLibraries_RunAllTests.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edaa-org/pyEDAA.Reports/HEAD/tests/data/JUnit/OsvvmLibraries/OSVVMLibraries_RunAllTests.xml -------------------------------------------------------------------------------- /tests/data/JUnit/VUnit/vunit.bamboo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edaa-org/pyEDAA.Reports/HEAD/tests/data/JUnit/VUnit/vunit.bamboo.xml -------------------------------------------------------------------------------- /tests/data/JUnit/VUnit/vunit.jenkins.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edaa-org/pyEDAA.Reports/HEAD/tests/data/JUnit/VUnit/vunit.jenkins.xml -------------------------------------------------------------------------------- /tests/data/JUnit/pyAttributes/pytest.pyAttributes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edaa-org/pyEDAA.Reports/HEAD/tests/data/JUnit/pyAttributes/pytest.pyAttributes.xml -------------------------------------------------------------------------------- /tests/data/JUnit/pyEDAA.Reports/Cpp-GoogleTest/ctest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edaa-org/pyEDAA.Reports/HEAD/tests/data/JUnit/pyEDAA.Reports/Cpp-GoogleTest/ctest.xml -------------------------------------------------------------------------------- /tests/data/JUnit/pyEDAA.Reports/Cpp-GoogleTest/gtest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edaa-org/pyEDAA.Reports/HEAD/tests/data/JUnit/pyEDAA.Reports/Cpp-GoogleTest/gtest.xml -------------------------------------------------------------------------------- /tests/data/JUnit/pyEDAA.Reports/Java-Ant-JUnit4/TEST-my.AllTests.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edaa-org/pyEDAA.Reports/HEAD/tests/data/JUnit/pyEDAA.Reports/Java-Ant-JUnit4/TEST-my.AllTests.xml -------------------------------------------------------------------------------- /tests/data/JUnit/pyEDAA.Reports/Java-Ant-JUnit4/TEST-my.pack.AllTests.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edaa-org/pyEDAA.Reports/HEAD/tests/data/JUnit/pyEDAA.Reports/Java-Ant-JUnit4/TEST-my.pack.AllTests.xml -------------------------------------------------------------------------------- /tests/data/JUnit/pyEDAA.Reports/Java-Ant-JUnit4/TEST-my.pack.MyClassTest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edaa-org/pyEDAA.Reports/HEAD/tests/data/JUnit/pyEDAA.Reports/Java-Ant-JUnit4/TEST-my.pack.MyClassTest.xml -------------------------------------------------------------------------------- /tests/data/JUnit/pyEDAA.Reports/Java-Ant-JUnit4/TEST-my.pack.OtherClassTest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edaa-org/pyEDAA.Reports/HEAD/tests/data/JUnit/pyEDAA.Reports/Java-Ant-JUnit4/TEST-my.pack.OtherClassTest.xml -------------------------------------------------------------------------------- /tests/data/JUnit/pyEDAA.Reports/Python-pytest/TestReportSummary.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edaa-org/pyEDAA.Reports/HEAD/tests/data/JUnit/pyEDAA.Reports/Python-pytest/TestReportSummary.xml -------------------------------------------------------------------------------- /tests/data/JUnit/pyGHDL/pyGHDL-Ubuntu-24.04-3.12.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edaa-org/pyEDAA.Reports/HEAD/tests/data/JUnit/pyGHDL/pyGHDL-Ubuntu-24.04-3.12.xml -------------------------------------------------------------------------------- /tests/data/JUnit/pyGHDL/pyGHDL-Ubuntu-3.12.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edaa-org/pyEDAA.Reports/HEAD/tests/data/JUnit/pyGHDL/pyGHDL-Ubuntu-3.12.xml -------------------------------------------------------------------------------- /tests/data/JUnit/pyGHDL/pyGHDL-Windows-3.12.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edaa-org/pyEDAA.Reports/HEAD/tests/data/JUnit/pyGHDL/pyGHDL-Windows-3.12.xml -------------------------------------------------------------------------------- /tests/data/JUnit/pyGHDL/pyGHDL-Winodws-2022-3.12.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edaa-org/pyEDAA.Reports/HEAD/tests/data/JUnit/pyGHDL/pyGHDL-Winodws-2022-3.12.xml -------------------------------------------------------------------------------- /tests/data/JUnit/pyTooling/Platform-UnitTestReportSummary-XML-macos-arm-native-3.12.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edaa-org/pyEDAA.Reports/HEAD/tests/data/JUnit/pyTooling/Platform-UnitTestReportSummary-XML-macos-arm-native-3.12.xml -------------------------------------------------------------------------------- /tests/data/JUnit/pyTooling/Platform-UnitTestReportSummary-XML-macos-native-3.12.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edaa-org/pyEDAA.Reports/HEAD/tests/data/JUnit/pyTooling/Platform-UnitTestReportSummary-XML-macos-native-3.12.xml -------------------------------------------------------------------------------- /tests/data/JUnit/pyTooling/Platform-UnitTestReportSummary-XML-msys2-CLANG64-3.11.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edaa-org/pyEDAA.Reports/HEAD/tests/data/JUnit/pyTooling/Platform-UnitTestReportSummary-XML-msys2-CLANG64-3.11.xml -------------------------------------------------------------------------------- /tests/data/JUnit/pyTooling/Platform-UnitTestReportSummary-XML-msys2-MINGW64-3.11.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edaa-org/pyEDAA.Reports/HEAD/tests/data/JUnit/pyTooling/Platform-UnitTestReportSummary-XML-msys2-MINGW64-3.11.xml -------------------------------------------------------------------------------- /tests/data/JUnit/pyTooling/Platform-UnitTestReportSummary-XML-msys2-UCRT64-3.11.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edaa-org/pyEDAA.Reports/HEAD/tests/data/JUnit/pyTooling/Platform-UnitTestReportSummary-XML-msys2-UCRT64-3.11.xml -------------------------------------------------------------------------------- /tests/data/JUnit/pyTooling/Platform-UnitTestReportSummary-XML-ubuntu-native-3.12.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edaa-org/pyEDAA.Reports/HEAD/tests/data/JUnit/pyTooling/Platform-UnitTestReportSummary-XML-ubuntu-native-3.12.xml -------------------------------------------------------------------------------- /tests/data/JUnit/pyTooling/Platform-UnitTestReportSummary-XML-windows-native-3.12.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edaa-org/pyEDAA.Reports/HEAD/tests/data/JUnit/pyTooling/Platform-UnitTestReportSummary-XML-windows-native-3.12.xml -------------------------------------------------------------------------------- /tests/data/JUnit/pyTooling/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edaa-org/pyEDAA.Reports/HEAD/tests/data/JUnit/pyTooling/README.md -------------------------------------------------------------------------------- /tests/data/JUnit/pyTooling/pyTooling-UnitTestReportSummary-XML-macos-arm-native-3.10.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edaa-org/pyEDAA.Reports/HEAD/tests/data/JUnit/pyTooling/pyTooling-UnitTestReportSummary-XML-macos-arm-native-3.10.xml -------------------------------------------------------------------------------- /tests/data/JUnit/pyTooling/pyTooling-UnitTestReportSummary-XML-macos-arm-native-3.11.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edaa-org/pyEDAA.Reports/HEAD/tests/data/JUnit/pyTooling/pyTooling-UnitTestReportSummary-XML-macos-arm-native-3.11.xml -------------------------------------------------------------------------------- /tests/data/JUnit/pyTooling/pyTooling-UnitTestReportSummary-XML-macos-arm-native-3.12.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edaa-org/pyEDAA.Reports/HEAD/tests/data/JUnit/pyTooling/pyTooling-UnitTestReportSummary-XML-macos-arm-native-3.12.xml -------------------------------------------------------------------------------- /tests/data/JUnit/pyTooling/pyTooling-UnitTestReportSummary-XML-macos-arm-native-3.8.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edaa-org/pyEDAA.Reports/HEAD/tests/data/JUnit/pyTooling/pyTooling-UnitTestReportSummary-XML-macos-arm-native-3.8.xml -------------------------------------------------------------------------------- /tests/data/JUnit/pyTooling/pyTooling-UnitTestReportSummary-XML-macos-arm-native-3.9.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edaa-org/pyEDAA.Reports/HEAD/tests/data/JUnit/pyTooling/pyTooling-UnitTestReportSummary-XML-macos-arm-native-3.9.xml -------------------------------------------------------------------------------- /tests/data/JUnit/pyTooling/pyTooling-UnitTestReportSummary-XML-macos-arm-native-pypy-3.10.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edaa-org/pyEDAA.Reports/HEAD/tests/data/JUnit/pyTooling/pyTooling-UnitTestReportSummary-XML-macos-arm-native-pypy-3.10.xml -------------------------------------------------------------------------------- /tests/data/JUnit/pyTooling/pyTooling-UnitTestReportSummary-XML-macos-arm-native-pypy-3.8.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edaa-org/pyEDAA.Reports/HEAD/tests/data/JUnit/pyTooling/pyTooling-UnitTestReportSummary-XML-macos-arm-native-pypy-3.8.xml -------------------------------------------------------------------------------- /tests/data/JUnit/pyTooling/pyTooling-UnitTestReportSummary-XML-macos-arm-native-pypy-3.9.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edaa-org/pyEDAA.Reports/HEAD/tests/data/JUnit/pyTooling/pyTooling-UnitTestReportSummary-XML-macos-arm-native-pypy-3.9.xml -------------------------------------------------------------------------------- /tests/data/JUnit/pyTooling/pyTooling-UnitTestReportSummary-XML-macos-native-3.10.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edaa-org/pyEDAA.Reports/HEAD/tests/data/JUnit/pyTooling/pyTooling-UnitTestReportSummary-XML-macos-native-3.10.xml -------------------------------------------------------------------------------- /tests/data/JUnit/pyTooling/pyTooling-UnitTestReportSummary-XML-macos-native-3.11.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edaa-org/pyEDAA.Reports/HEAD/tests/data/JUnit/pyTooling/pyTooling-UnitTestReportSummary-XML-macos-native-3.11.xml -------------------------------------------------------------------------------- /tests/data/JUnit/pyTooling/pyTooling-UnitTestReportSummary-XML-macos-native-3.12.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edaa-org/pyEDAA.Reports/HEAD/tests/data/JUnit/pyTooling/pyTooling-UnitTestReportSummary-XML-macos-native-3.12.xml -------------------------------------------------------------------------------- /tests/data/JUnit/pyTooling/pyTooling-UnitTestReportSummary-XML-macos-native-3.8.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edaa-org/pyEDAA.Reports/HEAD/tests/data/JUnit/pyTooling/pyTooling-UnitTestReportSummary-XML-macos-native-3.8.xml -------------------------------------------------------------------------------- /tests/data/JUnit/pyTooling/pyTooling-UnitTestReportSummary-XML-macos-native-3.9.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edaa-org/pyEDAA.Reports/HEAD/tests/data/JUnit/pyTooling/pyTooling-UnitTestReportSummary-XML-macos-native-3.9.xml -------------------------------------------------------------------------------- /tests/data/JUnit/pyTooling/pyTooling-UnitTestReportSummary-XML-macos-native-pypy-3.10.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edaa-org/pyEDAA.Reports/HEAD/tests/data/JUnit/pyTooling/pyTooling-UnitTestReportSummary-XML-macos-native-pypy-3.10.xml -------------------------------------------------------------------------------- /tests/data/JUnit/pyTooling/pyTooling-UnitTestReportSummary-XML-macos-native-pypy-3.8.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edaa-org/pyEDAA.Reports/HEAD/tests/data/JUnit/pyTooling/pyTooling-UnitTestReportSummary-XML-macos-native-pypy-3.8.xml -------------------------------------------------------------------------------- /tests/data/JUnit/pyTooling/pyTooling-UnitTestReportSummary-XML-macos-native-pypy-3.9.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edaa-org/pyEDAA.Reports/HEAD/tests/data/JUnit/pyTooling/pyTooling-UnitTestReportSummary-XML-macos-native-pypy-3.9.xml -------------------------------------------------------------------------------- /tests/data/JUnit/pyTooling/pyTooling-UnitTestReportSummary-XML-msys2-MINGW64-3.11.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edaa-org/pyEDAA.Reports/HEAD/tests/data/JUnit/pyTooling/pyTooling-UnitTestReportSummary-XML-msys2-MINGW64-3.11.xml -------------------------------------------------------------------------------- /tests/data/JUnit/pyTooling/pyTooling-UnitTestReportSummary-XML-msys2-UCRT64-3.11.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edaa-org/pyEDAA.Reports/HEAD/tests/data/JUnit/pyTooling/pyTooling-UnitTestReportSummary-XML-msys2-UCRT64-3.11.xml -------------------------------------------------------------------------------- /tests/data/JUnit/pyTooling/pyTooling-UnitTestReportSummary-XML-ubuntu-native-3.10.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edaa-org/pyEDAA.Reports/HEAD/tests/data/JUnit/pyTooling/pyTooling-UnitTestReportSummary-XML-ubuntu-native-3.10.xml -------------------------------------------------------------------------------- /tests/data/JUnit/pyTooling/pyTooling-UnitTestReportSummary-XML-ubuntu-native-3.11.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edaa-org/pyEDAA.Reports/HEAD/tests/data/JUnit/pyTooling/pyTooling-UnitTestReportSummary-XML-ubuntu-native-3.11.xml -------------------------------------------------------------------------------- /tests/data/JUnit/pyTooling/pyTooling-UnitTestReportSummary-XML-ubuntu-native-3.12.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edaa-org/pyEDAA.Reports/HEAD/tests/data/JUnit/pyTooling/pyTooling-UnitTestReportSummary-XML-ubuntu-native-3.12.xml -------------------------------------------------------------------------------- /tests/data/JUnit/pyTooling/pyTooling-UnitTestReportSummary-XML-ubuntu-native-3.8.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edaa-org/pyEDAA.Reports/HEAD/tests/data/JUnit/pyTooling/pyTooling-UnitTestReportSummary-XML-ubuntu-native-3.8.xml -------------------------------------------------------------------------------- /tests/data/JUnit/pyTooling/pyTooling-UnitTestReportSummary-XML-ubuntu-native-3.9.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edaa-org/pyEDAA.Reports/HEAD/tests/data/JUnit/pyTooling/pyTooling-UnitTestReportSummary-XML-ubuntu-native-3.9.xml -------------------------------------------------------------------------------- /tests/data/JUnit/pyTooling/pyTooling-UnitTestReportSummary-XML-ubuntu-native-pypy-3.10.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edaa-org/pyEDAA.Reports/HEAD/tests/data/JUnit/pyTooling/pyTooling-UnitTestReportSummary-XML-ubuntu-native-pypy-3.10.xml -------------------------------------------------------------------------------- /tests/data/JUnit/pyTooling/pyTooling-UnitTestReportSummary-XML-ubuntu-native-pypy-3.8.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edaa-org/pyEDAA.Reports/HEAD/tests/data/JUnit/pyTooling/pyTooling-UnitTestReportSummary-XML-ubuntu-native-pypy-3.8.xml -------------------------------------------------------------------------------- /tests/data/JUnit/pyTooling/pyTooling-UnitTestReportSummary-XML-ubuntu-native-pypy-3.9.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edaa-org/pyEDAA.Reports/HEAD/tests/data/JUnit/pyTooling/pyTooling-UnitTestReportSummary-XML-ubuntu-native-pypy-3.9.xml -------------------------------------------------------------------------------- /tests/data/JUnit/pyTooling/pyTooling-UnitTestReportSummary-XML-windows-native-3.10.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edaa-org/pyEDAA.Reports/HEAD/tests/data/JUnit/pyTooling/pyTooling-UnitTestReportSummary-XML-windows-native-3.10.xml -------------------------------------------------------------------------------- /tests/data/JUnit/pyTooling/pyTooling-UnitTestReportSummary-XML-windows-native-3.11.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edaa-org/pyEDAA.Reports/HEAD/tests/data/JUnit/pyTooling/pyTooling-UnitTestReportSummary-XML-windows-native-3.11.xml -------------------------------------------------------------------------------- /tests/data/JUnit/pyTooling/pyTooling-UnitTestReportSummary-XML-windows-native-3.12.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edaa-org/pyEDAA.Reports/HEAD/tests/data/JUnit/pyTooling/pyTooling-UnitTestReportSummary-XML-windows-native-3.12.xml -------------------------------------------------------------------------------- /tests/data/JUnit/pyTooling/pyTooling-UnitTestReportSummary-XML-windows-native-3.8.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edaa-org/pyEDAA.Reports/HEAD/tests/data/JUnit/pyTooling/pyTooling-UnitTestReportSummary-XML-windows-native-3.8.xml -------------------------------------------------------------------------------- /tests/data/JUnit/pyTooling/pyTooling-UnitTestReportSummary-XML-windows-native-3.9.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edaa-org/pyEDAA.Reports/HEAD/tests/data/JUnit/pyTooling/pyTooling-UnitTestReportSummary-XML-windows-native-3.9.xml -------------------------------------------------------------------------------- /tests/data/JUnit/pyTooling/pyTooling-UnitTestReportSummary-XML-windows-native-pypy-3.10.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edaa-org/pyEDAA.Reports/HEAD/tests/data/JUnit/pyTooling/pyTooling-UnitTestReportSummary-XML-windows-native-pypy-3.10.xml -------------------------------------------------------------------------------- /tests/data/JUnit/pyTooling/pyTooling-UnitTestReportSummary-XML-windows-native-pypy-3.8.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edaa-org/pyEDAA.Reports/HEAD/tests/data/JUnit/pyTooling/pyTooling-UnitTestReportSummary-XML-windows-native-pypy-3.8.xml -------------------------------------------------------------------------------- /tests/data/JUnit/pyTooling/pyTooling-UnitTestReportSummary-XML-windows-native-pypy-3.9.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edaa-org/pyEDAA.Reports/HEAD/tests/data/JUnit/pyTooling/pyTooling-UnitTestReportSummary-XML-windows-native-pypy-3.9.xml -------------------------------------------------------------------------------- /tests/data/JUnit/pyVersioning/unittests.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edaa-org/pyEDAA.Reports/HEAD/tests/data/JUnit/pyVersioning/unittests.xml -------------------------------------------------------------------------------- /tests/packages/documented/MyModule.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edaa-org/pyEDAA.Reports/HEAD/tests/packages/documented/MyModule.py -------------------------------------------------------------------------------- /tests/packages/documented/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edaa-org/pyEDAA.Reports/HEAD/tests/packages/documented/__init__.py -------------------------------------------------------------------------------- /tests/packages/partially/MyModule.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edaa-org/pyEDAA.Reports/HEAD/tests/packages/partially/MyModule.py -------------------------------------------------------------------------------- /tests/packages/partially/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edaa-org/pyEDAA.Reports/HEAD/tests/packages/partially/__init__.py -------------------------------------------------------------------------------- /tests/packages/undocumented/MyModule.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edaa-org/pyEDAA.Reports/HEAD/tests/packages/undocumented/MyModule.py -------------------------------------------------------------------------------- /tests/packages/undocumented/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edaa-org/pyEDAA.Reports/HEAD/tests/packages/undocumented/__init__.py -------------------------------------------------------------------------------- /tests/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edaa-org/pyEDAA.Reports/HEAD/tests/requirements.txt -------------------------------------------------------------------------------- /tests/unit/DocumentationCoverage/DataModel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edaa-org/pyEDAA.Reports/HEAD/tests/unit/DocumentationCoverage/DataModel.py -------------------------------------------------------------------------------- /tests/unit/DocumentationCoverage/DocStrCoverage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edaa-org/pyEDAA.Reports/HEAD/tests/unit/DocumentationCoverage/DocStrCoverage.py -------------------------------------------------------------------------------- /tests/unit/DocumentationCoverage/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edaa-org/pyEDAA.Reports/HEAD/tests/unit/DocumentationCoverage/__init__.py -------------------------------------------------------------------------------- /tests/unit/Unittesting/DataModel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edaa-org/pyEDAA.Reports/HEAD/tests/unit/Unittesting/DataModel.py -------------------------------------------------------------------------------- /tests/unit/Unittesting/Examples/OSVVM.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edaa-org/pyEDAA.Reports/HEAD/tests/unit/Unittesting/Examples/OSVVM.py -------------------------------------------------------------------------------- /tests/unit/Unittesting/Examples/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edaa-org/pyEDAA.Reports/HEAD/tests/unit/Unittesting/Examples/__init__.py -------------------------------------------------------------------------------- /tests/unit/Unittesting/Examples/pyAttributes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edaa-org/pyEDAA.Reports/HEAD/tests/unit/Unittesting/Examples/pyAttributes.py -------------------------------------------------------------------------------- /tests/unit/Unittesting/Examples/pyEDAAReports.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edaa-org/pyEDAA.Reports/HEAD/tests/unit/Unittesting/Examples/pyEDAAReports.py -------------------------------------------------------------------------------- /tests/unit/Unittesting/Examples/pyTooling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edaa-org/pyEDAA.Reports/HEAD/tests/unit/Unittesting/Examples/pyTooling.py -------------------------------------------------------------------------------- /tests/unit/Unittesting/Examples/pyVersioning.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edaa-org/pyEDAA.Reports/HEAD/tests/unit/Unittesting/Examples/pyVersioning.py -------------------------------------------------------------------------------- /tests/unit/Unittesting/JUnit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edaa-org/pyEDAA.Reports/HEAD/tests/unit/Unittesting/JUnit.py -------------------------------------------------------------------------------- /tests/unit/Unittesting/Merge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edaa-org/pyEDAA.Reports/HEAD/tests/unit/Unittesting/Merge.py -------------------------------------------------------------------------------- /tests/unit/Unittesting/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edaa-org/pyEDAA.Reports/HEAD/tests/unit/Unittesting/__init__.py -------------------------------------------------------------------------------- /tests/unit/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edaa-org/pyEDAA.Reports/HEAD/tests/unit/__init__.py -------------------------------------------------------------------------------- /tests/unit/requirements.txt: -------------------------------------------------------------------------------- 1 | -r ../requirements.txt 2 | 3 | docstr_coverage ~= 2.3 4 | --------------------------------------------------------------------------------