mirror of
https://github.com/pyTooling/Actions.git
synced 2026-02-12 11:06:56 +08:00
Merge junit files. Merge coverage files. Extending UnitTesting to support code coverage in a matrix too.
38 lines
413 B
Plaintext
38 lines
413 B
Plaintext
# Python cache and object files
|
|
__pycache__/
|
|
*.py[cod]
|
|
|
|
# Coverage.py
|
|
.coverage
|
|
.cov
|
|
coverage.xml
|
|
/report/coverage
|
|
|
|
# mypy
|
|
/report/typing
|
|
|
|
# pytest
|
|
/report/unit
|
|
|
|
# setuptools
|
|
/build/**/*.*
|
|
/dist/**/*.*
|
|
/*.egg-info
|
|
|
|
# Dependencies
|
|
!requirements.txt
|
|
|
|
# Sphinx
|
|
doc/_build/
|
|
doc/pyDummy/**/*.*
|
|
!doc/pyDummy/index.rst
|
|
|
|
# BuildTheDocs
|
|
doc/_theme/**/*.*
|
|
|
|
# IntelliJ project files
|
|
/.idea/workspace.xml
|
|
|
|
# Git files
|
|
!.git*
|